PXV_PluginFeatureFlag Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:PXV_PluginFeatureFlag Enumeration}}
 
{{#customTitle:PXV_PluginFeatureFlag Enumeration}}
 +
{{#parentPage:PXV:PXV_Enumerations|PXV_PluginFeatureFlag|enum}}
  
Specifies the ...
+
 
 +
Specifies the common plugin features.
  
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">enum PXV_PluginFeatureFlag
 
<pre class="brush:cpp;gutter:false">enum PXV_PluginFeatureFlag
 
{
 
{
     PFF_HasPreferences = 1;
+
     PFF_HasPreferences   = 1,
     PFF_HasAdditionalData = 2;
+
     PFF_HasAdditionalData = 2,
 
};
 
};
 
</pre>
 
</pre>
Line 14: Line 17:
 
== Constants ==
 
== Constants ==
 
;PFF_HasPreferences
 
;PFF_HasPreferences
:The ...
+
:The plugin has preferences dialog
 
;PFF_HasAdditionalData
 
;PFF_HasAdditionalData
:The ...
+
:The plugin has its own additional data, that can be exported, imported and reset
 
+
== See Also ==
+
See also ...
+

Latest revision as of 09:50, 4 September 2015


Specifies the common plugin features.

Syntax

enum PXV_PluginFeatureFlag
{
    PFF_HasPreferences    = 1,
    PFF_HasAdditionalData = 2,
};

Constants

PFF_HasPreferences
The plugin has preferences dialog
PFF_HasAdditionalData
The plugin has its own additional data, that can be exported, imported and reset