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




image
The image on which the image processing command should be performed.
Runs the image processing command.

Syntax

Visual Basic (Declaration) 
Overridable Function Run( _
   ByVal image As RasterImage _
) As RasterImageChangedFlags
Visual Basic (Usage)Copy Code
Dim instance As IRasterCommand
Dim image As RasterImage
Dim value As RasterImageChangedFlags
 
value = instance.Run(image)
C# 
virtual RasterImageChangedFlags Run( 
   RasterImage image
)
Managed Extensions for C++ 
virtual RasterImageChangedFlags Run( 
   RasterImage* image
) 
C++/CLI 
virtual RasterImageChangedFlags Run( 
   RasterImage^ image
) 

Parameters

image
The image on which the image processing command should be performed.

Return Value

RasterImageChangedFlags flags which indicate the changes made to the specified image.

Example

For an example, refer to RasterCommand.

Remarks

Call this method to start the image processing command.

Each derived class must override this method to provide the actual image processing algorithm.

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