Example





In This Topic

EnableICM Property (GdViewer)

In This Topic
Specifies whether the GdViewer control the color correction technique when manipulating with files that embed an ICC profile.

The ICM stands for Image Color Matching and this technique maps color profiles to allows the color system used by one computer device to match the colors used by other applications and devices.

Syntax
'Declaration
 
Public Property EnableICM As Boolean
public bool EnableICM {get; set;}
public read-write property EnableICM: Boolean; 
public function get,set EnableICM : boolean
public: __property bool get_EnableICM();
public: __property void set_EnableICM( 
   bool value
);
public:
property bool EnableICM {
   bool get();
   void set (    bool value);
}

Property Value

The default value is false.
Example
How to utilize this property in your GdViewer control.
'We assume that the GdViewer1 control has been properly integrated.
GdViewer1.EnableICM = True
//We assume that the GdViewer1 control has been properly integrated.
GdViewer1.EnableICM = true;
See Also