←Select platform

JobCompleted Event

Summary
Occurs when a job is completed or aborted.
Syntax
C#
VB
Objective-C
C++
Java
public event EventHandler<OcrAutoRecognizeRunJobEventArgs> JobCompleted 
Event JobCompleted As EventHandler(Of OcrAutoRecognizeRunJobEventArgs) 
- (void)autoRecognizeManager:(LTOcrAutoRecognizeManager *)manager didCompleteWithStatus:(LTOcrAutoRecognizeManagerJobStatus *)status 
synchronized public void addJobCompletedListener(OcrAutoRecognizeRunJobListener listener) 
synchronized public void removeJobCompletedListener(OcrAutoRecognizeRunJobListener listener) 
event EventHandler<OcrAutoRecognizeRunJobEventArgs^>^ JobCompleted 
Event Data

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.

PropertyDescription
Job Gets the job that triggered this event.
Remarks

This event will occur when Run, RunJob or 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. RunJob example shows complete source code of how to easily accomplish these tasks in your application.

The JobCompleted event will always occur when a job is run whether the job is aborted or completed.

The JobStarted event occurs when a job is about to start.

Example

For an example, refer to RunJob.

Requirements

Target Platforms

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Ocr Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.