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




Implements Progress.

Syntax

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

Example

For an example, refer to RasterCommand.

Remarks

The Progress event is fired when the RasterCommand.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.

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