add_completed(function(sender, e)) completed.add(function(sender, e)) remove_completed(function(sender, e)) completed.remove(function(sender, e))
The event handler receives an argument of type ImageProcessingCompletedEventArgs containing data related to this event. The following ImageProcessingCompletedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ImageData | Gets the result HTML5 canvas image data. |
Results | Gets a dictionary that contains the extra results. |
This event will occur after the Run method is finished running. The event data will contain the destination image data and any optional results.
For an example, refer to ImageProcessing.
Parameter | Type | Description |
---|---|---|
sender | 'var' | The source of the event. |
e | ImageProcessingCompletedEventArgs | The event data. |