ArcObjects Library Reference (Controls)  

IEngineInkEnvironment.AutoRecognizeInkGraphics Property

Indicates whether to attempt to recognize newly created InkGraphics as text.

[Visual Basic .NET]
Public Property AutoRecognizeInkGraphics As Boolean
[C#]
public bool AutoRecognizeInkGraphics {get; set;}
[C++]
HRESULT get_AutoRecognizeInkGraphics(
  VARIANT_BOOL* autoRecognize
);
[C++]
HRESULT put_AutoRecognizeInkGraphics(
  VARIANT_BOOL autoRecognize
);
[C++]

Parameters

autoRecognize [out, retval]   autoRecognize is a parameter of type VARIANT_BOOL autoRecognize [in]   autoRecognize is a parameter of type VARIANT_BOOL

Product Availability

Available with ArcGIS Engine.

Description

When AutoRecgonizeInkGraphics is set to true, every time that an ink graphic is created or updated, its ink will be recognized and the textual representation will be stored with the graphic element. The ControlsInkFindInkCommand will then use the text property to search for ink stored in a graphics layer. This is important if the Find is going to be performed on a non-tablet pc as recognition is only support on tablets.

See Also

IEngineInkEnvironment Interface