editors.pdf.formfields
API reference for the editors.pdf.formfields module.
# All public classes import directly from the top-level package:from nutrient_sdk import PdfCheckBoxFieldClasses
| Class | Description |
|---|---|
PdfCheckBoxField | Represents a check box form field in a PDF document. Check boxes toggle between two states: checked and unchecked. |
PdfComboBoxField | Represents a combo box (drop-down list) form field in a PDF document. Combo boxes display a list of options and may optionally allow custom text entry. |
PdfFormField | Represents a form field in a PDF document. Form fields can be terminal (with widget annotations) or non-terminal (with child fields). This is the base class for all form field types. Use the specific subclasses (PdfTextField, PdfCheckBoxField, PdfRadioButtonField, etc.) for type-specific functionality. |
PdfFormFieldCollection | Represents a collection of form fields in a PDF document. Provides access to the top-level form fields in the document’s AcroForm. |
PdfListBoxField | Represents a list box form field in a PDF document. List boxes display a scrollable list of options for selection. |
PdfPushButtonField | Represents a push button form field in a PDF document. Push buttons respond immediately to user input without retaining a permanent value. They are typically used to trigger actions like submit, reset, or JavaScript execution. |
PdfRadioButtonField | Represents a radio button form field in a PDF document. Radio buttons are part of a mutually exclusive group where only one option can be selected. |
PdfSignatureField | Represents a signature form field in a PDF document. Signature fields are used for electronic signatures. |
PdfTextField | Represents a text form field in a PDF document. Text fields allow users to enter text from the keyboard. |