add_progress(function(sender, e))
progress.add(function(sender, e))
remove_progress(function(sender, e))
progress.remove(function(sender, e))
The event handler receives an argument of type ImageProcessingProgressEventArgs containing data related to this event. The following ImageProcessingProgressEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Cancel | Gets or sets a value that indicate whether to abort the current image processing operation. |
| Percentage | Gets the current image processing completion percentage. |
This event will occur after the Run method is called. The event data will contain progress percentage from 0 to 100.
For an example, refer to ImageProcessing.
| Parameter | Type | Description |
|---|---|---|
| sender | 'var' | The source of the event. |
| e | ImageProcessingProgressEventArgs | The event data. |