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



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

Syntax

Visual Basic (Declaration) 
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++/CLI 
RasterImageChangedFlags Run( 
   RasterImage^ image
) 

Parameters

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

Return Value

Flags which indicate the changes made to the specified image.

Example

For an example, refer to IRasterCommand

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 CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also