InkEdit.Recognition Event

InkEdit.Recognition Event

Occurs when the InkEdit control gets results manually from a call to the Recognize method or automatically after the recognition timeout fires.

Definition

Visual Basic .NET Public Event Recognition As InkEditRecognitionEventHandler
C# public event InkEditRecognitionEventHandler Recognition;
Managed C++ public: __event InkEditRecognitionEventHandler Recognition;

Remarks

The event handler receives an argument of type InkEditRecognitionEventArgs that contains data about this event.

When you create an InkEditRecognitionEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.

See Also