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

TdxPDFForm Members

In This Article
An interactive form in a PDF document.

#Properties

Name Description
FieldCount Returns the number of interactive fields on the form.
FieldNames Returns a string list populated with names of all interactive fields on the form.

#Methods
Show Inherited Hide Inherited

Name Description
ClearValues Clears all field values.
Equals(TObject) Inherited from TObject.
Flatten Flattens all interactive fields on the form.
Flatten(TdxPDFCustomField) Flattens the specified interactive field on the form.
ForEach(TdxPDFFormForEachFieldProc) Performs a specific set of actions on all interactive fields on the form.
GetButtonField(string) Returns a button field by its name on the form.
GetCheckBoxField(string) Returns a checkbox field by its name on the form.
GetComboBoxField(string) Returns a combobox field by its name on the form.
GetField(string) Returns an interactive field by its name on the form.
GetHashCode Inherited from TObject.
GetListBoxField(string) Returns a list box field by its name on the form.
GetRadioGroupField(string) Returns a radio group field by its name on the form.
GetTextField(string) Returns a text field by its name on the form.
LoadDataFromFile(string) Loads interactive field values from a specified file.
LoadDataFromStream(TStream) Loads interactive field values from a specified stream.
Reset Restores the default values for all interactive fields on the form.
SaveDataToFile(string) Saves all exportable field values to a file.
SaveDataToStream(TStream,TdxPDFFormDataFormat) Saves all exportable field values to a stream in the specified format.
ToArray Inherited from TEnumerable<T>.
ToString Inherited from TObject.
TryGetButtonField(string,TdxPDFButtonField) Returns a button field by its name if the field is on the form.
TryGetCheckBoxField(string,TdxPDFCheckBoxField) Returns a checkbox field by its name if the field is on the form.
TryGetComboBoxField(string,TdxPDFComboBoxField) Returns a combo box field by its name if the field is on the form.
TryGetField(string,TdxPDFCustomField) Returns an interactive field by its name if the field is on the form.
TryGetListBoxField(string,TdxPDFListBoxField) Returns a list box field by its name if the field is on the form.
TryGetRadioGroupField(string,TdxPDFRadioGroupField) Returns a radio group field by its name if the field is on the form.
TryGetTextField(string,TdxPDFTextField) Returns a text field by its name if the field is on the form.
See Also