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



image
The image on which the image processing command should be performed.
Implements IRasterCommand.Run.

Syntax

Visual Basic (Declaration)  
Public Overridable Function Run( _
   ByVal image As RasterImage _
) As RasterImageChangedFlags
Visual Basic (Usage) Copy Code
Dim instance As RasterCommand
Dim image As RasterImage
Dim value As RasterImageChangedFlags
 
value = instance.Run(image)
C#  
public virtual RasterImageChangedFlags Run( 
   RasterImage image
)
C++/CLI  
public:
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 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also