ClearImage .NET API
LineFoundEvent Event





Inlite.ClearImageNet Namespace > ImageEditor Class : LineFoundEvent Event
Occurs when new line is found  by the ImageEditor.GetLines method.
Syntax
'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.

PropertyDescription
Flag to abort line detection. Set 'true' to abort  
Number of lines found during this ImageEditor.GetLines operation  
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