PXV_PaperType Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 10: Line 10:
 
<pre class="brush:cpp;gutter:false">enum PXV_PaperType
 
<pre class="brush:cpp;gutter:false">enum PXV_PaperType
 
{
 
{
     PaperType_Undefined = -1;
+
     PaperType_Undefined = -1,
     PaperType_Document  = 0;
+
     PaperType_Document  = 0,
     PaperType_Standard  = 1;
+
     PaperType_Standard  = 1,
     PaperType_Custom    = 2;
+
     PaperType_Custom    = 2,
     PaperType_BySource  = 3;
+
     PaperType_BySource  = 3,
 
};
 
};
 
</pre>
 
</pre>

Revision as of 11:10, 8 May 2015


Specifies the ...

Syntax

enum PXV_PaperType
{
    PaperType_Undefined = -1,
    PaperType_Document  = 0,
    PaperType_Standard  = 1,
    PaperType_Custom    = 2,
    PaperType_BySource  = 3,
};

Constants

PaperType_Undefined
The ...
PaperType_Document
The ...
PaperType_Standard
The ...
PaperType_Custom
The ...
PaperType_BySource
The ...

See Also

See also ...