Occurs when the command finishes running.
Object.defineProperty(ImageProcessing.prototype,'completed',
get: function(),
set: function(value)
)
function completed.add(function(sender, e));
function completed.remove(function(sender, e));
completed: void;
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. |