| Caption | string | Read-only | The name of the field displayed on the form. The value of this property may be the same as the Name property. |
| Children | IFields | Read-only | Child items of the field (cells for tables). Unavailable in script rules. |
| FullName | string | Read-only | A full field name relative to the document. A unique identifier of the field in the document. Can be used to search for document fields through the Field method. In script rules the returned value coincides with Name and is not unique. |
| HasRuleError | bool | Read/write | Specifies whether a rule warning or error is associated with the field. In script rules this property specifies whether to display the field in the error message. A rule includes a collection of fields specified in the rule properties dialog box. If the rule check fails, the document editor shows the error message from IRuleContext ErrorMessage. It also shows links to the fields in the collection. Setting this property to false excludes the field from the list of links associated with the error. |
| IsExportable | bool | Read-only | Specifies whether the field is intended for export (according to the Document Definition settings). |
| IsIndexed | bool | Read-only | Specifies whether the field is indexable. If yes, the field value is available from document and page external fields of the Document Definition. |
| IsMatched | bool | Read-only | Specifies whether the field is matched. |
| IsSuspicious | bool | Read-only | Specifies whether the field value is certainly recognized. |
| IsValid | bool | Read-only | Specifies whether the field has no format errors. |
| IsVerified | bool | Read/write | Specifies whether the field is verified. This property does not work for field groups. The property can be set to true in rules even without write permissions for the field. To deselect the flag, write permissions are required. If the flag is true, the field is displayed gray in the document editor, as if it were already confirmed. If the flag is false, the field is displayed white and needs to be confirmed. After the field is verified, the flag is set to true. Setting this flag to false does not route the field to the Data Verification stage. For that, use the NeedVerification property of the IField or ICharacterParams interfaces. |
| IsVisible | bool | Read/write | Specifies whether the field should be reflected in the document layout (according to the Document Definition settings). |
| Items | IFields | Read-only | Instances of the field (rows of table fields). |
| Name | string | Read-only | The field name in the Document Definition. |
| NeedVerification | bool | Read/write | Specifies whether the field itself (not its characters) needs verification. If the flag is true, the field is displayed against a red background in the document editor, which means the field needs verification. If the Send to field verification option is selected in the field properties, the field is routed to the Data Verification stage. After the field is verified, the flag is set to false. To specify whether particular characters, but not the whole field, need verification, use the NeedVerification property of the ICharacterParams interface. |
| ReadOnly | bool | Read-only | Specifies whether the field has read-only permissions (according to the Document Definition settings). When used in rules, indicates that the rule has write permission for the field. |
| ReadOnlyInForm | bool | Read/write | Specifies whether the field on the form has read-only permissions (according to the Document Definition settings). |
| Regions | IFieldRegions | Read-only | An array of field regions. Overflowing fields can have several regions. Available only if the Advanced XML Export option in the license properties is selected. |
| Rows | IFields | Read-only | A set of table rows. Unavailable for non-table fields. |
| Symbols | ICharactersParams | Read-only | Detailed information about the symbol properties. |
| Text | string | Read/write | The text representation of a field value. |
| Type | TExportFieldType | Read-only | The type of a field. |
| Value | VARIANT | Read/write | The value of the field in the form of VARIANT. The property returns an Int32 object when the field settings state that it holds an integer whose absolute value is at most 2147483647. If the absolute value of the field is greater than 2147483647, the property returns an object of type double. |