FormSuite v6.0 - Updated
ProcessImageProgressChanged Event




Accusoft.FormsAPI.Net Assembly > Accusoft.Forms Namespace > Processor Class : ProcessImageProgressChanged Event
Occurs when the processing operation is beginning or has completed a major step in processing the form image.
Syntax
'Declaration
 
Public Event ProcessImageProgressChanged As EventHandler(Of ProcessImageProgressChangedEventArgs)
'Usage
 
Dim instance As Processor
Dim handler As EventHandler(Of ProcessImageProgressChangedEventArgs)
 
AddHandler instance.ProcessImageProgressChanged, handler
public event EventHandler<ProcessImageProgressChangedEventArgs> ProcessImageProgressChanged
public: __event EventHandler<ProcessImageProgressChangedEventArgs*>* ProcessImageProgressChanged
public:
event EventHandler<ProcessImageProgressChangedEventArgs^>^ ProcessImageProgressChanged
Event Data

The event handler receives an argument of type ProcessImageProgressChangedEventArgs containing data related to this event. The following ProcessImageProgressChangedEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets a value indicating whether processing should cancel and return early.  
Gets the task progress percentage.  
See Also