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




Occurs during the processing of the image processing commands.

Syntax

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

Example

For an example, refer to RasterCommandProcessor.

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