Leadtools.CF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.6.15
Mode Property
See Also 
Leadtools.ImageProcessing Namespace > ColorResolutionCommand Class : Mode Property



Indicates options for this ColorResolutionCommand.

Syntax

Visual Basic (Declaration) 
Public Property Mode As ColorResolutionCommandMode
Visual Basic (Usage)Copy Code
Dim instance As ColorResolutionCommand
Dim value As ColorResolutionCommandMode
 
instance.Mode = value
 
value = instance.Mode
C# 
public ColorResolutionCommandMode Mode {get; set;}
C++/CLI 
public:
property ColorResolutionCommandMode Mode {
   ColorResolutionCommandMode get();
   void set (ColorResolutionCommandMode value);
}

Return Value

If you specify ColorResolutionCommandMode.CreateDestinationImage for Mode, then the DestinationImage property will hold the result image from running this command (Source image is left intact).

If you specify ColorResolutionCommandMode.InPlace for Mode, then the DestinationImage property will not be used (The source image will be converted in place).

Example

For an example, refer to ColorResolutionCommand.

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also