PXC_ShowTextLineFlags 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 PXC_ShowTextLineFlags
 
<pre class="brush:cpp;gutter:false">enum PXC_ShowTextLineFlags
 
{
 
{
     STLF_Default          = 0;
+
     STLF_Default          = 0,
     STLF_Top              = 0;
+
     STLF_Top              = 0,
     STLF_Middle            = 1;
+
     STLF_Middle            = 1,
     STLF_Baseline          = 2;
+
     STLF_Baseline          = 2,
     STLF_Bottom            = 3;
+
     STLF_Bottom            = 3,
     STLF_Position_Mask    = 3;
+
     STLF_Position_Mask    = 3,
     STLF_AllowSubstitution = 256;
+
     STLF_AllowSubstitution = 256,
 
};
 
};
 
</pre>
 
</pre>

Revision as of 11:08, 8 May 2015


Specifies the ...

Syntax

enum PXC_ShowTextLineFlags
{
    STLF_Default           = 0,
    STLF_Top               = 0,
    STLF_Middle            = 1,
    STLF_Baseline          = 2,
    STLF_Bottom            = 3,
    STLF_Position_Mask     = 3,
    STLF_AllowSubstitution = 256,
};

Constants

STLF_Default
The ...
STLF_Top
The ...
STLF_Middle
The ...
STLF_Baseline
The ...
STLF_Bottom
The ...
STLF_Position_Mask
The ...
STLF_AllowSubstitution
The ...

See Also

See also ...