Accusoft.FSInvoices1.Net - Updated
OnProgressEvent Event




Accusoft.FSInvoices Namespace > Processor Class : OnProgressEvent Event
Reports progress during processing.
Syntax
'Declaration
 
Public Event OnProgressEvent As EventHandler(Of ProcessingEventArgs)
'Usage
 
Dim instance As Processor
Dim handler As EventHandler(Of ProcessingEventArgs)
 
AddHandler instance.OnProgressEvent, handler
public event EventHandler<ProcessingEventArgs> OnProgressEvent
public: __event EventHandler<ProcessingEventArgs*>* OnProgressEvent
public:
event EventHandler<ProcessingEventArgs^>^ OnProgressEvent
Event Data

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

PropertyDescription
Gets and sets the flag that cancels processing.  
Gets the identifier of the current file being processed.  
Gets the zero-based index of the current file page being processed.  
Gets the current ProcessingState.  
See Also