FieldTypeEnum
FieldTypeEnum enumeration constants define different types of fields.
typedef enum {
FT_TextField,
FT_DateTimeField,
FT_NumberField,
FT_PictureField,
FT_Checkmark,
FT_CheckmarkGroup,
FT_Group,
FT_PageGroup,
FT_Table,
FT_Document,
FT_CurrencyField,
FT_LinkField,
FT_DocumentLinkField,
FT_MirrorField
} FieldTypeEnum;
Elements
| Name | Description |
|---|---|
| FT_Checkmark |
Checkmark field, in which a mark (e.g. a check, a cross, etc.) is made by the person filling out the form.
|
| FT_CheckmarkGroup |
Checkmark group field, unites several checkmark fields. Checkmark groups are usually accompanied by explanatory text that explains the type of choice to be made. It can have child fields FT_Checkmark.
|
| FT_CurrencyField | Field containing currency values. |
| FT_DateTimeField |
Field containing date and time, is meant to input date when filling in the form.
|
| FT_Document | Document field. The whole document can be considered as the top-level field which contains all the data fields of the document. |
| FT_DocumentLinkField | Field containing a link to another document. |
| FT_Group | Field group, several logically connected fields. It can have child fields: FT_TextField, FT_PictureField, FT_CheckmarkGroup, FT_Checkmark, FT_Table, FT_Group. |
| FT_LinkField | Field containing a link to a field of another document. |
| FT_MirrorField | Field containing a link to a field of the same document. |
| FT_NumberField |
Field containing numbers, is meant to input figures when filling in the form.
|
| FT_PageGroup | Page group, several logically connected pages. It can have child fields: FT_TextField, FT_PictureField, FT_CheckmarkGroup, FT_Checkmark, FT_Checkmark, FT_Table, FT_Group. |
| FT_PictureField | Picture field, contains an image. |
| FT_Table | Table field, contains columns of elements of the same type. Each table field has child fields corresponding to the columns of a table: FT_TextField, FT_PictureField, FT_CheckmarkGroup, FT_Checkmark. |
| FT_TextField |
Text field, contains descriptions and explanatory text, such as field names, instructions on how to fill out the form, etc.
|
Used in
8/15/2023 1:19:30 PM





