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



Gets or sets the the behaviour of the command.

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

ColorResolutionCommandMode enumeration value that control the behaviour of the command.

Example

For an example, refer to ColorResolutionCommand

Remarks

The ColorResolutionCommand can convert an image inplace, can create a new image for the conversion or can be used to get the converted data only. The Mode property controls what happens when the RasterCommand.Run method is executed.

For more information, refer to ColorResolutionCommandMode.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also