Uses of Interface
com.snowtide.pdf.forms.AcroFormField
-
Packages that use AcroFormField Package Description com.snowtide.pdf.forms This package contains interfaces and classes that PDFxStream uses to represent various types of form data present in PDFDocument
s. -
-
Uses of AcroFormField in com.snowtide.pdf.forms
Classes in com.snowtide.pdf.forms that implement AcroFormField Modifier and Type Class Description class
AcroButtonField
Represents a button form field in an interactiveAcroForm
.class
AcroCheckboxField
Instances of this class represent individual checkboxes in aninteractive forms
.class
AcroChoiceField
Represents a multiple-choice form field in an interactive AcroForm.class
AcroRadioButtonGroupField
Instances of this class represent a group of radio buttons in aninteractive forms
.class
AcroSignatureField
Represents a digital signature field in an interactive AcroForm.class
AcroTextField
Represents a text field in an interactive AcroForm.Methods in com.snowtide.pdf.forms that return AcroFormField Modifier and Type Method Description AcroFormField
AcroForm. getField(String fullName)
Returns theAcroFormField
that has the given field name, as provided by thegetFullName()
function.Methods in com.snowtide.pdf.forms that return types with arguments of type AcroFormField Modifier and Type Method Description Iterator<AcroFormField>
AcroForm. iterator()
Returns anIterator
over theAcroFormField
s held by this form.
-