'Declaration
Public Event LineFoundEvent As ImageEditor.LineFoundEventHandler
'Usage
Dim instance As ImageEditor Dim handler As ImageEditor.LineFoundEventHandler AddHandler instance.LineFoundEvent, handler
public event ImageEditor.LineFoundEventHandler LineFoundEvent
public event LineFoundEvent: ImageEditor.LineFoundEventHandler;
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: event ImageEditor.LineFoundEventHandler^ LineFoundEvent
Event Data
The event handler receives an argument of type LineFoundEventArgs containing data related to this event. The following LineFoundEventArgs properties provide information specific to this event.
Property | Description |
---|---|
cancel | Flag to abort line detection. Set 'true' to abort |
Count | Number of lines found during this ImageEditor.GetLines operation |
ImageLine | ImageLine object with information about just found image line |
Remarks
This event allows to process ImageLine data as soon as new barcode is found. Set cancel to true to stop further line search.
See Also