Error processing SSI file
LEADTOOLS (Leadtools assembly)

Show in webframe

Progress Event (RasterCommand)








Implements Progress.
Syntax
'Declaration
 
Public Event Progress As EventHandler(Of RasterCommandProgressEventArgs)
'Usage
 
Dim instance As RasterCommand
Dim handler As EventHandler(Of RasterCommandProgressEventArgs)
 
AddHandler instance.Progress, handler
typedef void (^LTRasterCommandProgress)(NSInteger percent, BOOL *cancel)

- (BOOL)run:(LTRasterImage *)image 
   progress:(nullable LTRasterCommandProgress)progressHandler 
      error:(NSError **)error
            
public void addProgressListener(RasterImageProgressListener listener)
public void removeProgressListener(RasterImageProgressListener listener)
            
add_Progress(function(sender, e))
remove_Progress(function(sender, e))

Event Data

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

PropertyDescription
Cancel Gets or sets a value indicating whether the image processing command should be canceled.
Percent Gets the percentage completion of the command.
Remarks
The Progress event is fired when the Run method. RasterCommandProgressEventArgs provides data on the current progress of the image processing command. You can use this data to provide visual feedback to the user.
Example
For an example, refer to RasterCommand.
Requirements

Target Platforms

See Also

Reference

RasterCommand Class
RasterCommand Members

Error processing SSI file