RangeFeatures 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 RangeFeatures
 
<pre class="brush:cpp;gutter:false">enum RangeFeatures
 
{
 
{
     RangeFeature_AllowReversed    = 1;
+
     RangeFeature_AllowReversed    = 1,
     RangeFeature_AllowCurrent    = 2;
+
     RangeFeature_AllowCurrent    = 2,
     RangeFeature_AllowCurrentRect = 6;
+
     RangeFeature_AllowCurrentRect = 6,
     RangeFeature_AllowCustomRect  = 8;
+
     RangeFeature_AllowCustomRect  = 8,
     RangeFeature_AllowArray      = 16;
+
     RangeFeature_AllowArray      = 16,
     RangeFeature_AllowFilter      = 32;
+
     RangeFeature_AllowFilter      = 32,
     RangeFeature_AllowAll        = 64;
+
     RangeFeature_AllowAll        = 64,
     RangeFeature_Dialog          = -2147483648;
+
     RangeFeature_Dialog          = -2147483648,
 
};
 
};
 
</pre>
 
</pre>

Revision as of 11:10, 8 May 2015


Specifies the ...

Syntax

enum RangeFeatures
{
    RangeFeature_AllowReversed    = 1,
    RangeFeature_AllowCurrent     = 2,
    RangeFeature_AllowCurrentRect = 6,
    RangeFeature_AllowCustomRect  = 8,
    RangeFeature_AllowArray       = 16,
    RangeFeature_AllowFilter      = 32,
    RangeFeature_AllowAll         = 64,
    RangeFeature_Dialog           = -2147483648,
};

Constants

RangeFeature_AllowReversed
The ...
RangeFeature_AllowCurrent
The ...
RangeFeature_AllowCurrentRect
The ...
RangeFeature_AllowCustomRect
The ...
RangeFeature_AllowArray
The ...
RangeFeature_AllowFilter
The ...
RangeFeature_AllowAll
The ...
RangeFeature_Dialog
The ...

See Also

See also ...