Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
Progress Event
See Also 
Leadtools.ImageProcessing Namespace > IRasterCommand Interface : Progress Event




Occurs during the image processing command, to provide status on the progress of the command.

Syntax

Visual Basic (Declaration) 
Event Progress() As EventHandler(Of RasterCommandProgressEventArgs)
Visual Basic (Usage)Copy Code
Dim instance As IRasterCommand
Dim handler As EventHandler(Of RasterCommandProgressEventArgs)
 
AddHandler instance.Progress, handler
Managed Extensions for C++ 
__event EventHandler<RasterCommandProgressEventArgs>* Progress();
C++/CLI 
event EventHandler<RasterCommandProgressEventArgs>^ Progress();

Example

For an example, refer to RasterCommand.

Remarks

You can use this event to get progress status, or to cancel the process.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also