IXC_PageFormat Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IXC_PageFormat Enumeration}}
 
{{#customTitle:IXC_PageFormat Enumeration}}
{{ToWrite}}
+
{{#parentPage:PXV:IXC_Enumerations|IXC_PageFormat|enum}}
{{ToReview}}
+
  
Specifies the ...
+
Specifies the page presentation format.
  
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">enum IXC_PageFormat
 
<pre class="brush:cpp;gutter:false">enum IXC_PageFormat
 
{
 
{
     PageFormat_Empty = 0;
+
     PageFormat_Empty       = 0,
     PageFormat_1Indexed = 1;
+
     PageFormat_1Indexed   = 1,
     PageFormat_8Indexed = 2;
+
     PageFormat_8Indexed   = 2,
     PageFormat_8Gray = 3;
+
     PageFormat_8Gray       = 3,
     PageFormat_8AlphaGray = 4;
+
     PageFormat_8AlphaGray = 4,
     PageFormat_8RGB = 5;
+
     PageFormat_8RGB       = 5,
     PageFormat_8ARGB = 6;
+
     PageFormat_8ARGB       = 6,
     PageFormat_16Gray = 7;
+
     PageFormat_16Gray     = 7,
     PageFormat_16AlphaGray = 8;
+
     PageFormat_16AlphaGray = 8,
     PageFormat_16RGB = 9;
+
     PageFormat_16RGB       = 9,
     PageFormat_16ARGB = 10;
+
     PageFormat_16ARGB     = 10,
     PageFormat_Vector = 32768;
+
     PageFormat_Vector     = 32768,
 
};
 
};
 
</pre>
 
</pre>
Line 26: Line 26:
 
== Constants ==
 
== Constants ==
 
;PageFormat_Empty
 
;PageFormat_Empty
:The ...
+
:The page is not valid.
 
;PageFormat_1Indexed
 
;PageFormat_1Indexed
:The ...
+
:The page will be presented in the 1 bit per pixel indexed format.
 
;PageFormat_8Indexed
 
;PageFormat_8Indexed
:The ...
+
:The page will be presented in the 8 bits per pixel indexed format.
 
;PageFormat_8Gray
 
;PageFormat_8Gray
:The ...
+
:The page will be presented in the grayscale format.  
 
;PageFormat_8AlphaGray
 
;PageFormat_8AlphaGray
:The ...
+
:The page will be presented in the grayscale format with alpha channel.
 
;PageFormat_8RGB
 
;PageFormat_8RGB
:The ...
+
:The page will be presented in the TrueColor (24 bits per pixel) format.
 
;PageFormat_8ARGB
 
;PageFormat_8ARGB
:The ...
+
:The page will be presented in the TrueColor format with alpha channel.
 
;PageFormat_16Gray
 
;PageFormat_16Gray
:The ...
+
:The page will be presented in the 16-bit grayscale format.
 
;PageFormat_16AlphaGray
 
;PageFormat_16AlphaGray
:The ...
+
:The page will be presented in the 16-bit grayscale format with alpha channel.
 
;PageFormat_16RGB
 
;PageFormat_16RGB
:The ...
+
:The page will be presented in the HighСolor (48 bits per pixel) format.  
 
;PageFormat_16ARGB
 
;PageFormat_16ARGB
:The ...
+
:The page will be presented in the HighСolor format with alpha channel.
 
;PageFormat_Vector
 
;PageFormat_Vector
:The ...
+
:The page will be presented in the EMF format.
  
 
== See Also ==
 
== See Also ==
See also ...
+
[[PXV:IIXC_Page_ConvertToFormat|IIXC_Page::ConvertToFormat]], [[PXV:IIXC_Page_Format|IIXC_Page::Format]], [[PXV:IIXC_Inst_Page_CreateEmpty|IIXC_Inst::Page_CreateEmpty]]

Latest revision as of 10:33, 23 May 2015

Specifies the page presentation format.

Syntax

enum IXC_PageFormat
{
    PageFormat_Empty       = 0,
    PageFormat_1Indexed    = 1,
    PageFormat_8Indexed    = 2,
    PageFormat_8Gray       = 3,
    PageFormat_8AlphaGray  = 4,
    PageFormat_8RGB        = 5,
    PageFormat_8ARGB       = 6,
    PageFormat_16Gray      = 7,
    PageFormat_16AlphaGray = 8,
    PageFormat_16RGB       = 9,
    PageFormat_16ARGB      = 10,
    PageFormat_Vector      = 32768,
};

Constants

PageFormat_Empty
The page is not valid.
PageFormat_1Indexed
The page will be presented in the 1 bit per pixel indexed format.
PageFormat_8Indexed
The page will be presented in the 8 bits per pixel indexed format.
PageFormat_8Gray
The page will be presented in the grayscale format.
PageFormat_8AlphaGray
The page will be presented in the grayscale format with alpha channel.
PageFormat_8RGB
The page will be presented in the TrueColor (24 bits per pixel) format.
PageFormat_8ARGB
The page will be presented in the TrueColor format with alpha channel.
PageFormat_16Gray
The page will be presented in the 16-bit grayscale format.
PageFormat_16AlphaGray
The page will be presented in the 16-bit grayscale format with alpha channel.
PageFormat_16RGB
The page will be presented in the HighСolor (48 bits per pixel) format.
PageFormat_16ARGB
The page will be presented in the HighСolor format with alpha channel.
PageFormat_Vector
The page will be presented in the EMF format.

See Also

IIXC_Page::ConvertToFormat, IIXC_Page::Format, IIXC_Inst::Page_CreateEmpty