PXC_TextCharStyleFlags Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 11: Line 11:
 
<pre class="brush:cpp;gutter:false">enum PXC_TextCharStyleFlags
 
<pre class="brush:cpp;gutter:false">enum PXC_TextCharStyleFlags
 
{
 
{
     TCSF_Normal     = 1,
+
     TCSF_Normal       = 1,
     TCSF_Shifted     = 2,
+
     TCSF_Shifted     = 2,
     TCSF_SubScript   = 4,
+
     TCSF_SubScript   = 4,
     TCSF_SuperScript = 8,
+
     TCSF_SuperScript = 8,
 +
    TCSF_Underline    = 16,
 +
    TCSF_DblUnderline = 48,
 +
    TCSF_Strikeout    = 256,
 +
    TCSF_DblStrikeout = 768,
 
};
 
};
 
</pre>
 
</pre>
Line 26: Line 30:
 
:The ...
 
:The ...
 
;TCSF_SuperScript
 
;TCSF_SuperScript
 +
:The ...
 +
;TCSF_Underline
 +
:The ...
 +
;TCSF_DblUnderline
 +
:The ...
 +
;TCSF_Strikeout
 +
:The ...
 +
;TCSF_DblStrikeout
 
:The ...
 
:The ...

Latest revision as of 00:57, 22 November 2016


Specifies the ...

Syntax

enum PXC_TextCharStyleFlags
{
    TCSF_Normal       = 1,
    TCSF_Shifted      = 2,
    TCSF_SubScript    = 4,
    TCSF_SuperScript  = 8,
    TCSF_Underline    = 16,
    TCSF_DblUnderline = 48,
    TCSF_Strikeout    = 256,
    TCSF_DblStrikeout = 768,
};

Constants

TCSF_Normal
The ...
TCSF_Shifted
The ...
TCSF_SubScript
The ...
TCSF_SuperScript
The ...
TCSF_Underline
The ...
TCSF_DblUnderline
The ...
TCSF_Strikeout
The ...
TCSF_DblStrikeout
The ...