Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
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;}
Managed Extensions for C++ 
public: __property ColorResolutionCommandMode get_Mode();
public: __property void set_Mode( 
   ColorResolutionCommandMode value
);
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 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