PXC_FormFieldType Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
m (Automatic page editing by robot)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:PXC_FormFieldType Enumeration}}
 
{{#customTitle:PXC_FormFieldType Enumeration}}
 +
{{#parentPage:PXV:PXC_Enumerations|PXC_FormFieldType|enum}}
 +
{{ToWrite}}
 +
{{ToReview}}
  
 
Specifies the ...
 
Specifies the ...
Line 7: Line 11:
 
<pre class="brush:cpp;gutter:false">enum PXC_FormFieldType
 
<pre class="brush:cpp;gutter:false">enum PXC_FormFieldType
 
{
 
{
     FFT_Unknown = 0;
+
     FFT_Unknown     = 0,
     FFT_PushButton = 1;
+
     FFT_PushButton = 1,
     FFT_RadioButton = 2;
+
     FFT_RadioButton = 2,
     FFT_CheckBox = 3;
+
     FFT_CheckBox   = 3,
     FFT_Text = 4;
+
     FFT_Text       = 4,
     FFT_ComboBox = 5;
+
     FFT_ComboBox   = 5,
     FFT_ListBox = 6;
+
     FFT_ListBox     = 6,
     FFT_Signature = 7;
+
     FFT_Signature   = 7,
     FFT_Barcode = 8;
+
     FFT_Barcode     = 8,
     FFT_TypeMax = 9;
+
     FFT_TypeMax     = 9,
 
};
 
};
 
</pre>
 
</pre>
Line 43: Line 47:
  
 
== See Also ==
 
== See Also ==
See also ...
+
[[PXV:IPXC_AcroForm_CreateField|IPXC_AcroForm::CreateField]], [[PXV:IPXC_FormField_Type|IPXC_FormField::Type]]

Latest revision as of 10:36, 23 May 2015


Specifies the ...

Syntax

enum PXC_FormFieldType
{
    FFT_Unknown     = 0,
    FFT_PushButton  = 1,
    FFT_RadioButton = 2,
    FFT_CheckBox    = 3,
    FFT_Text        = 4,
    FFT_ComboBox    = 5,
    FFT_ListBox     = 6,
    FFT_Signature   = 7,
    FFT_Barcode     = 8,
    FFT_TypeMax     = 9,
};

Constants

FFT_Unknown
The ...
FFT_PushButton
The ...
FFT_RadioButton
The ...
FFT_CheckBox
The ...
FFT_Text
The ...
FFT_ComboBox
The ...
FFT_ListBox
The ...
FFT_Signature
The ...
FFT_Barcode
The ...
FFT_TypeMax
The ...

See Also

IPXC_AcroForm::CreateField, IPXC_FormField::Type