ColorType Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 1: Line 1:
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:ColorType Enumeration}}
 
{{#customTitle:ColorType Enumeration}}
 +
{{#parentPage:PXV:Common|ColorType Enumeration|enum}}
 
{{ToWrite}}
 
{{ToWrite}}
 
{{ToReview}}
 
{{ToReview}}
Line 9: Line 10:
 
<pre class="brush:cpp;gutter:false">enum ColorType
 
<pre class="brush:cpp;gutter:false">enum ColorType
 
{
 
{
     ColorType_Auto = -3;
+
     ColorType_Auto   = -3;
 
     ColorType_Default = -2;
 
     ColorType_Default = -2;
     ColorType_None = -1;
+
     ColorType_None   = -1;
     ColorType_RGB = 0;
+
     ColorType_RGB     = 0;
     ColorType_CMYK = 1;
+
     ColorType_CMYK   = 1;
     ColorType_Gray = 2;
+
     ColorType_Gray   = 2;
 
};
 
};
 
</pre>
 
</pre>

Revision as of 05:44, 23 April 2015


Specifies the ...

Syntax

enum ColorType
{
    ColorType_Auto    = -3;
    ColorType_Default = -2;
    ColorType_None    = -1;
    ColorType_RGB     = 0;
    ColorType_CMYK    = 1;
    ColorType_Gray    = 2;
};

Constants

ColorType_Auto
The ...
ColorType_Default
The ...
ColorType_None
The ...
ColorType_RGB
The ...
ColorType_CMYK
The ...
ColorType_Gray
The ...

See Also

See also ...