PXC_BackgroundFlags Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:PXC_BackgroundFlags Enumeration}}
 
{{#customTitle:PXC_BackgroundFlags Enumeration}}
{{#parentPage:PXV:PXC|PXC_BackgroundFlags Enumeration|enum}}
+
{{#parentPage:PXV:PXC_Enumerations|PXC_BackgroundFlags|enum}}
{{ToWrite}}
+
{{ToReview}}
+
  
Specifies the ...
+
Specifies the flags for the [[PXV:IPXC_BackgroundParams|IPXC_BackgroundParams]].
  
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">enum PXC_BackgroundFlags
 
<pre class="brush:cpp;gutter:false">enum PXC_BackgroundFlags
 
{
 
{
     BackgroundFlag_Default          = 0;
+
     BackgroundFlag_Default          = 0,
     BackgroundFlag_OffsetsInPercent  = 1;
+
     BackgroundFlag_OffsetsInPercent  = 1,
     BackgroundFlag_ScaleToPage      = 2;
+
     BackgroundFlag_ScaleToPage      = 2,
     BackgroundFlag_InvisibleOnView  = 256;
+
     BackgroundFlag_InvisibleOnView  = 256,
     BackgroundFlag_InvisibleOnPrint  = 512;
+
     BackgroundFlag_InvisibleOnPrint  = 512,
     BackgroundFlag_InvisibleOnExport = 1024;
+
     BackgroundFlag_InvisibleOnExport = 1024,
 
};
 
};
 
</pre>
 
</pre>
Line 21: Line 20:
 
== Constants ==
 
== Constants ==
 
;BackgroundFlag_Default
 
;BackgroundFlag_Default
:The ...
+
:The default values will be used.
 
;BackgroundFlag_OffsetsInPercent
 
;BackgroundFlag_OffsetsInPercent
:The ...
+
:The offset values will be interpreted as percents.
 
;BackgroundFlag_ScaleToPage
 
;BackgroundFlag_ScaleToPage
:The ...
+
:The scaling value will be counted based on the page proportions.
 
;BackgroundFlag_InvisibleOnView
 
;BackgroundFlag_InvisibleOnView
:The ...
+
:The background will be invisible on the pages view.
 
;BackgroundFlag_InvisibleOnPrint
 
;BackgroundFlag_InvisibleOnPrint
:The ...
+
:The background will be invisible when printing document.
 
;BackgroundFlag_InvisibleOnExport
 
;BackgroundFlag_InvisibleOnExport
:The ...
+
:The background will be invisible when exporting document.
  
 
== See Also ==
 
== See Also ==
See also ...
+
[[PXV:IPXC_BackgroundParams|IPXC_BackgroundParams]]

Latest revision as of 16:44, 7 September 2015

Specifies the flags for the IPXC_BackgroundParams.

Syntax

enum PXC_BackgroundFlags
{
    BackgroundFlag_Default           = 0,
    BackgroundFlag_OffsetsInPercent  = 1,
    BackgroundFlag_ScaleToPage       = 2,
    BackgroundFlag_InvisibleOnView   = 256,
    BackgroundFlag_InvisibleOnPrint  = 512,
    BackgroundFlag_InvisibleOnExport = 1024,
};

Constants

BackgroundFlag_Default
The default values will be used.
BackgroundFlag_OffsetsInPercent
The offset values will be interpreted as percents.
BackgroundFlag_ScaleToPage
The scaling value will be counted based on the page proportions.
BackgroundFlag_InvisibleOnView
The background will be invisible on the pages view.
BackgroundFlag_InvisibleOnPrint
The background will be invisible when printing document.
BackgroundFlag_InvisibleOnExport
The background will be invisible when exporting document.

See Also

IPXC_BackgroundParams