ImageGear .NET - Updated
CheckWord Event




ImageGear24.Recognition Assembly > ImageGear.Recognition Namespace > ImGearRecZone Class : CheckWord Event
Event used for user-defined checking.
Syntax
'Declaration
 
Public Event CheckWord As ImGearRecCheckWordEventHandler
'Usage
 
Dim instance As ImGearRecZone
Dim handler As ImGearRecCheckWordEventHandler
 
AddHandler instance.CheckWord, handler
public event ImGearRecCheckWordEventHandler CheckWord
public: __event ImGearRecCheckWordEventHandler* CheckWord
public:
event ImGearRecCheckWordEventHandler^ CheckWord
Event Data

The event handler receives an argument of type ImGearRecCheckWordEventArgs containing data related to this event. The following ImGearRecCheckWordEventArgs properties provide information specific to this event.

PropertyDescription
Gets word to be checked.  
Gets or sets application's opinion of the word.  
Remarks
CheckWord event used to allow applications to register an event handler for a zone that allows custom checking for the zone.
See Also