Pdf Form Field Collection
Represents a collection of form fields in a PDF document. Provides access to the top-level form fields in the document's AcroForm.
Functions
Link copied to clipboard
public final PdfCheckBoxField addCheckBoxField(String name, PdfPage page, float x, float y, float width, float height)
Adds a new check box field to the document on the specified page.
Link copied to clipboard
public final PdfComboBoxField addComboBoxField(String name, PdfPage page, float x, float y, float width, float height)
Adds a new combo box (drop-down list) field to the document on the specified page.
Link copied to clipboard
public final PdfListBoxField addListBoxField(String name, PdfPage page, float x, float y, float width, float height)
Adds a new list box field to the document on the specified page.
Link copied to clipboard
public final PdfPushButtonField addPushButtonField(String name, PdfPage page, float x, float y, float width, float height)
Adds a new push button field to the document on the specified page.
Link copied to clipboard
public final PdfRadioButtonField addRadioButtonField(String groupName, String optionName, PdfPage page, float x, float y, float width, float height)
Adds a new radio button to an existing or new radio button group on the specified page.
Link copied to clipboard
public final PdfSignatureField addSignatureField(String name, PdfPage page, float x, float y, float width, float height)
Adds a new signature field to the document on the specified page.
Link copied to clipboard
public final PdfTextField addTextField(String name, PdfPage page, float x, float y, float width, float height)
Adds a new text field to the document on the specified page.
Link copied to clipboard
Finds a form field by its full name (dot-separated path).
Link copied to clipboard
Returns the element at the specified position in this collection.
Link copied to clipboard
Returns an enumerator that iterates through the form fields collection.
Link copied to clipboard
Returns an iterator over the elements in this collection.
Link copied to clipboard