Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxPDFFormDataFormat Enum

Enumerates PDF form data formats.

#Declaration

Delphi
TdxPDFFormDataFormat = (
    dfFDF,
    dfXFDF,
    dfXML,
    dfTXT
);

#Members

Name Description File Name Extension
dfFDF

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.

fdf or FDF

dfXFDF

XML Forms Data Format. This format is an XML version of the Forms Data Format (dxFDF).

The XFDF format uses the UTF-8 encoding.

xdf or XDF

dfXML

Extensible Markup Language format.

xml or XML

dfTXT

Plain text format.

txt or TXT

#Remarks

The interactive PDF form’s SaveDataToStream procedure accepts a TdxPDFFormDataFormat value as the AFormat parameter.

See Also