Uses of Class
com.itextpdf.forms.fields.AbstractPdfFormField
-
Packages that use AbstractPdfFormField Package Description com.itextpdf.forms com.itextpdf.forms.fields -
-
Uses of AbstractPdfFormField in com.itextpdf.forms
Methods in com.itextpdf.forms that return AbstractPdfFormField Modifier and Type Method Description private AbstractPdfFormField
PdfPageFormCopier. makeFormField(PdfObject fieldDict)
Methods in com.itextpdf.forms that return types with arguments of type AbstractPdfFormField Modifier and Type Method Description java.util.Set<AbstractPdfFormField>
PdfAcroForm. getAllFormFieldsAndAnnotations()
Gets allform field
s as aSet
including fields kids and nameless fields. -
Uses of AbstractPdfFormField in com.itextpdf.forms.fields
Subclasses of AbstractPdfFormField in com.itextpdf.forms.fields Modifier and Type Class Description class
PdfButtonFormField
An interactive control on the screen that raises events and/or can retain data.class
PdfChoiceFormField
An AcroForm field type representing any type of choice field.class
PdfFormAnnotation
This class represents a single annotation in form fields hierarchy in anAcroForm
.class
PdfFormField
This class represents a single field or field group in anAcroForm
.class
PdfSignatureFormField
An AcroForm field containing signature data.class
PdfTextFormField
An AcroForm field containing textual data.Fields in com.itextpdf.forms.fields with type parameters of type AbstractPdfFormField Modifier and Type Field Description private java.util.List<AbstractPdfFormField>
PdfFormField. childFields
Methods in com.itextpdf.forms.fields that return AbstractPdfFormField Modifier and Type Method Description static AbstractPdfFormField
PdfFormField. makeFormFieldOrAnnotation(PdfObject pdfObject, PdfDocument document)
AbstractPdfFormField
AbstractPdfFormField. put(PdfName key, PdfObject value)
Inserts the value into thePdfDictionary
of this field and associates it with the specified key.AbstractPdfFormField
AbstractPdfFormField. remove(PdfName key)
Removes the specified key from thePdfDictionary
of this field.(package private) AbstractPdfFormField
PdfFormField. setChildField(AbstractPdfFormField kid)
Adds a field to the children of the current field.AbstractPdfFormField
AbstractPdfFormField. setColor(Color color)
Sets the text color and regenerates appearance stream.AbstractPdfFormField
PdfFormField. setColor(Color color)
Sets the text color and regenerates appearance stream.AbstractPdfFormField
AbstractPdfFormField. setFont(PdfFont font)
Basic setter for thefont
property.AbstractPdfFormField
AbstractPdfFormField. setFontAndSize(PdfFont font, float fontSize)
Combined setter for thefont
andfontSize
properties.AbstractPdfFormField
AbstractPdfFormField. setFontSize(float fontSize)
Basic setter for thefontSize
property.AbstractPdfFormField
AbstractPdfFormField. setFontSize(int fontSize)
Basic setter for thefontSize
property.AbstractPdfFormField
AbstractPdfFormField. setFontSizeAutoScale()
Sets zero font size which will be interpreted as auto-size according to ISO 32000-1, 12.7.3.3.Methods in com.itextpdf.forms.fields that return types with arguments of type AbstractPdfFormField Modifier and Type Method Description java.util.List<AbstractPdfFormField>
PdfFormField. getAllChildFields()
Gets all childFields of this object, including the children of the children.java.util.List<AbstractPdfFormField>
PdfFormField. getChildFields()
Gets the childFields of this object.Methods in com.itextpdf.forms.fields with parameters of type AbstractPdfFormField Modifier and Type Method Description PdfFormField
PdfButtonFormField. addKid(AbstractPdfFormField kid)
Adds a new kid to theKids
array property from aAbstractPdfFormField
.PdfFormField
PdfFormField. addKid(AbstractPdfFormField kid)
Adds a new kid to theKids
array property from aAbstractPdfFormField
.PdfFormField
PdfFormField. addKid(AbstractPdfFormField kid, boolean throwExceptionOnError)
Adds a new kid to theKids
array property from aAbstractPdfFormField
.static java.lang.String
PdfFormFieldMergeUtil. getPartialName(AbstractPdfFormField field)
Gets partial name for the field dictionary.private boolean
PdfFormField. mergeKidsIfKidWithSuchNameExists(AbstractPdfFormField newKid, boolean throwExceptionOnError)
void
PdfFormField. removeChild(AbstractPdfFormField fieldName)
Removes the childField object of this field.(package private) AbstractPdfFormField
PdfFormField. setChildField(AbstractPdfFormField kid)
Adds a field to the children of the current field.Method parameters in com.itextpdf.forms.fields with type arguments of type AbstractPdfFormField Modifier and Type Method Description (package private) void
PdfFormField. replaceKids(java.util.Collection<AbstractPdfFormField> kids)
Replaces /Kids value with passed kids dictionaries, and keeps old flashed fields there.
-