←Select platform

JobOperation Event

Summary

Occurs while a job is running.

Syntax
C#
VB
C++
Java
public event EventHandler<DocumentConverterJobEventArgs> JobOperation 
Public Event JobOperation As EventHandler(Of Leadtools.Document.Converter.DocumentConverterJobEventArgs) 
public:  
   event EventHandler<Leadtools::Documents::Converters::DocumentConverterJobEventArgs^>^ JobOperation 
public void addJobOperationListener(DocumentConverterJobEventListener listener) 
public void removeJobOperationListener(DocumentConverterJobEventListener listener) 
Remarks

This event one or more times will occur while RunJob or RunJobAsync is running.

You can use this event to get information on the current operation (loading a page, converting, saving, etc.).

The values of DocumentConverterJobEventArgs depend on the current operation. You can modify these values at certain operations to alter or override the behavior or data of the conversion process. Refer to DocumentConverterJobOperation for more information.

The JobOperation event occurs twice per operation. First with DocumentConverterJobEventArgs.IsPostOperation set to false to indicate that the operation is about to happen. then with DocumentConverterJobEventArgs.IsPostOperation set to true to indicate that the operation was performed.

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

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

Example

For an example, refer to RunJob and RunJobAsync.

Event Data
ParameterTypeDescription
senderobjectThe source of the event.
eDocumentConverterJobEventArgsThe event data.
Requirements
Target Platforms
Help Version 21.0.2021.6.30
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Document.Converter Assembly

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