Specifies the type of a PDF form field.

from nutrient import PdfFormFieldType

Values

NameValueDescription
PdfFormFieldType.UNKNOWN0Unknown or undefined field type.
PdfFormFieldType.TEXT1A text field where users can enter text from the keyboard.
PdfFormFieldType.PUSH_BUTTON2A push button that responds immediately to user input without retaining a permanent value.
PdfFormFieldType.CHECK_BOX3A check box that toggles between two states (on and off).
PdfFormFieldType.RADIO_BUTTON4A radio button that is part of a mutually exclusive group.
PdfFormFieldType.COMBO_BOX5A combo box (drop-down list), optionally with an editable text field.
PdfFormFieldType.LIST_BOX6A scrollable list box for selecting one or more items.
PdfFormFieldType.SIGNATURE7A signature field for electronic signatures.

Usage Example

from nutrient import PdfFormFieldType
# Access enum values
value = PdfFormFieldType.UNKNOWN
print(f"Value: {value}") # Output: Value: PdfFormFieldType.UNKNOWN
print(f"Integer value: {value.value}") # Output: Integer value: 0