The JobCompleted Event is available as an add-on to the LEADTOOLS Document and Medical Imaging toolkits.
Occurs when a job is completed or aborted.Visual Basic (Declaration) | |
---|---|
Event JobCompleted As EventHandler(Of OcrAutoRecognizeRunJobEventArgs) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As IOcrAutoRecognizeManager Dim handler As EventHandler(Of OcrAutoRecognizeRunJobEventArgs) AddHandler instance.JobCompleted, handler |
C# | |
---|---|
event EventHandler<OcrAutoRecognizeRunJobEventArgs> JobCompleted |
C++/CLI | |
---|---|
event EventHandler<OcrAutoRecognizeRunJobEventArgs^>^ JobCompleted |
The event handler receives an argument of type OcrAutoRecognizeRunJobEventArgs containing data related to this event. The following OcrAutoRecognizeRunJobEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Job | Gets the job that triggered this event. |
Status | Gets or sets a value indicating whether to continue or abort current job. |
This event will occur when Run, IOcrAutoRecognizeManager.RunJob or IOcrAutoRecognizeManager.RunJobAsync is called.
You can use this event to keep track of the number of jobs pending running. You can also examine OcrAutoRecognizeRunJobEventArgs.Job to get information on whether job finished successfully and get error status if any. IOcrAutoRecognizeManager.RunJob example shows complete source code of how to easily accomplish these tasks in your application.
The IOcrAutoRecognizeManager.JobCompleted event will always occur when a job is run whether the job is aborted or completed.
The IOcrAutoRecognizeManager.JobStarted event occurs when a job is about to start.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7