TdxPDFFormDataFormat Enum
In This Article
Enumerates PDF form data formats.
#Declaration
Delphi
TdxPDFFormDataFormat = (
dfFDF,
dfXFDF,
dfXML,
dfTXT
);
#Members
Name | Description | File Name Extension |
---|---|---|
df
|
Forms Data Format. Stores the key/value pairs that define interactive field names and the corresponding values used to populate a PDF form. This format uses the ASCII encoding. |
|
df
|
XML Forms Data Format. This format is an XML version of the Forms Data Format (dx The XFDF format uses the UTF-8 encoding. |
|
df
|
Extensible Markup Language format. |
|
df
|
Plain text format. |
|
#Remarks
The interactive PDF form’s SaveDataToStream procedure accepts a TdxPDFFormDataFormat value as the AFormat parameter.
See Also