Uses of Interface
com.itextpdf.forms.form.element.IFormField
-
Packages that use IFormField Package Description com.itextpdf.forms.fields com.itextpdf.forms.form.element com.itextpdf.forms.form.renderer -
-
Uses of IFormField in com.itextpdf.forms.fields
Fields in com.itextpdf.forms.fields declared as IFormField Modifier and Type Field Description private IFormField
PdfFormAnnotation. formFieldElement
Methods in com.itextpdf.forms.fields with parameters of type IFormField Modifier and Type Method Description PdfFormAnnotation
PdfFormAnnotation. setFormFieldElement(IFormField element)
This method sets the model element associated with the current annotation and can be useful to take into account when drawing those properties that the annotation does not have. -
Uses of IFormField in com.itextpdf.forms.form.element
Classes in com.itextpdf.forms.form.element with type parameters of type IFormField Modifier and Type Class Description class
FormField<T extends IFormField>
Implementation of theAbstractElement
class for form fields.Classes in com.itextpdf.forms.form.element that implement IFormField Modifier and Type Class Description class
AbstractSelectField
An abstract class for fields that represents a control for selecting one or several of the provided options.class
Button
Extension of theFormField
class representing a button in html.class
CheckBox
Extension of theFormField
class representing a checkbox so that aCheckBoxRenderer
is used instead of the default renderer for fields.class
ComboBoxField
A field that represents a control for selecting one of the provided options.class
FormField<T extends IFormField>
Implementation of theAbstractElement
class for form fields.class
InputField
Extension of theFormField
class representing a button so that aInputFieldRenderer
is used.class
ListBoxField
A field that represents a control for selecting one or several of the provided options.class
Radio
Extension of theFormField
class representing a radio button so that aRadioRenderer
is used instead of the default renderer for fields.class
SignatureFieldAppearance
Extension of theFormField
class representing a signature field in PDF.class
TextArea
Extension of theFormField
class representing a button so that aTextAreaRenderer
is used instead of the default renderer for fields.Methods in com.itextpdf.forms.form.element that return IFormField Modifier and Type Method Description IFormField
FormField. setHeight(float height)
Set the form field's height.IFormField
IFormField. setHeight(float height)
Set the form field's height.IFormField
FormField. setInteractive(boolean interactive)
Set the form field to be interactive and added into Acroform instead of drawing it on a page.IFormField
IFormField. setInteractive(boolean interactive)
Set the form field to be interactive and added into Acroform instead of drawing it on a page.IFormField
Button. setValue(java.lang.String value)
Adds passed string value as paragraph to the button.IFormField
FormField. setValue(java.lang.String value)
Sets theFormProperty.FORM_FIELD_VALUE
property.IFormField
IFormField. setValue(java.lang.String value)
Sets theFormProperty.FORM_FIELD_VALUE
property.IFormField
FormField. setWidth(float width)
Set the form field's width.IFormField
IFormField. setWidth(float width)
Set the form field's width. -
Uses of IFormField in com.itextpdf.forms.form.renderer
Constructors in com.itextpdf.forms.form.renderer with parameters of type IFormField Constructor Description AbstractFormFieldRenderer(IFormField modelElement)
Creates a newAbstractFormFieldRenderer
instance.AbstractOneLineTextFieldRenderer(IFormField modelElement)
Creates a newAbstractOneLineTextFieldRenderer
instance.AbstractTextFieldRenderer(IFormField modelElement)
Creates a newAbstractTextFieldRenderer
instance.
-