Package com.itextpdf.forms.fields
Class AbstractPdfFormField
java.lang.Object
com.itextpdf.kernel.pdf.PdfObjectWrapper<PdfDictionary>
com.itextpdf.forms.fields.AbstractPdfFormField
- Direct Known Subclasses:
-
PdfFormAnnotation
,PdfFormField
This class represents a single field or field group in an
AcroForm
.
To be able to be wrapped with this PdfObjectWrapper
the PdfObject
must be indirect.
-
Field Summary
Modifier and TypeFieldDescriptionprotected Color
static final int
Size of text in form fields when font size is not explicitly set.protected PdfFont
protected float
static final int
Minimal size of text in form fields.protected PdfFormField
Parent form field.protected PdfAConformanceLevel
Deprecated.since 8.0.4, this is not used anymore! Use pdfConformanceLevel insteadprotected IConformanceLevel
-
Constructor Summary
ModifierConstructorDescriptionprotected
AbstractPdfFormField
(PdfDictionary pdfObject) Creates a form field as a wrapper object around aPdfDictionary
. -
Method Summary
Modifier and TypeMethodDescriptionvoid
This method disables regeneration of the current field appearance stream.void
This method disables regeneration of the field and its children appearance stream.void
This method enables regeneration of the current field appearance stream and regenerates it.void
This method enables regeneration of the field appearance stream.boolean
Indicate whether some other object is "equal to" this one.abstract String[]
Gets the appearance state names.getColor()
Gets the current color of the form field.abstract PdfString
Gets default appearance string containing a sequence of valid page-content graphics or text state operators that define such properties as the field's text size and color.Gets thePdfDocument
that owns that form field.Gets the current field name.getFont()
Gets the current font of the form field.float
Gets the current fontSize of the form field.Gets the parent dictionary.Gets the parent field.Deprecated.Gets the declared conformance level.Gets the wrapped dictionary.int
hashCode()
Generate a hash code for this object.boolean
This method checks if field appearance stream regeneration is enabled.boolean
Determines whether current form field is terminal or not.protected boolean
Defines if the object behind this wrapper must be an indirect object in the resultant document.Inserts the value into thePdfDictionary
of this field and associates it with the specified key.abstract boolean
This method regenerates appearance stream of the field.void
release()
Releases underlying pdf object and other pdf entities used by wrapper.Removes the specified key from thePdfDictionary
of this field.Sets the text color and regenerates appearance stream.Basic setter for thefont
property.setFontAndSize
(PdfFont font, float fontSize) Combined setter for thefont
andfontSize
properties.setFontSize
(float fontSize) Basic setter for thefontSize
property.setFontSize
(int fontSize) Basic setter for thefontSize
property.Sets zero font size which will be interpreted as auto-size according to ISO 32000-1, 12.7.3.3.void
setParent
(PdfFormField parent) Sets a parentPdfFormField
for the current object.Methods inherited from class com.itextpdf.kernel.pdf.PdfObjectWrapper
ensureObjectIsAddedToDocument, ensureUnderlyingObjectHasIndirectReference, flush, isFlushed, makeIndirect, makeIndirect, markObjectAsIndirect, setForbidRelease, setModified, setPdfObject, unsetForbidRelease
-
Field Details
-
DEFAULT_FONT_SIZE
public static final int DEFAULT_FONT_SIZESize of text in form fields when font size is not explicitly set.- See Also:
-
MIN_FONT_SIZE
public static final int MIN_FONT_SIZEMinimal size of text in form fields.- See Also:
-
font
-
fontSize
protected float fontSize -
color
-
pdfAConformanceLevel
Deprecated.since 8.0.4, this is not used anymore! Use pdfConformanceLevel instead -
pdfConformanceLevel
-
parent
Parent form field.
-
-
Constructor Details
-
AbstractPdfFormField
Creates a form field as a wrapper object around aPdfDictionary
. ThisPdfDictionary
must be an indirect object.- Parameters:
-
pdfObject
- the dictionary to be wrapped, must have an indirect reference.
-
-
Method Details
-
getPdfObject
Gets the wrapped dictionary.- Overrides:
-
getPdfObject
in classPdfObjectWrapper<PdfDictionary>
- Returns:
- the wrapped dictionary.
-
setParent
Sets a parentPdfFormField
for the current object.- Parameters:
-
parent
- another form field that this field belongs to, usually a group field.
-
getParent
Gets the parent dictionary.- Returns:
- another form field that this field belongs to.
-
getParentField
Gets the parent field.- Returns:
- another form field that this field belongs to.
-
getFieldName
Gets the current field name.- Returns:
-
the current field name, as a
PdfString
.
-
getDefaultAppearance
Gets default appearance string containing a sequence of valid page-content graphics or text state operators that define such properties as the field's text size and color.- Returns:
-
the default appearance graphics, as a
PdfString
.
-
getFontSize
public float getFontSize()Gets the current fontSize of the form field.- Returns:
- the current fontSize.
-
getFont
Gets the current font of the form field.- Returns:
-
the current
font
-
getColor
Gets the current color of the form field.- Returns:
-
the current
color
-
getPdfAConformanceLevel
Deprecated.Gets the declared conformance level. Deprecated useAbstractPdfFormField
getPdfConformanceLevel- Returns:
-
the
PdfAConformanceLevel
-
getPdfConformanceLevel
Gets the declared conformance level.- Returns:
-
the
IConformanceLevel
-
regenerateField
public abstract boolean regenerateField()This method regenerates appearance stream of the field. Use it if you changed any field parameters and didn't use setValue method which generates appearance by itself.- Returns:
- whether or not the regeneration was successful.
-
disableFieldRegeneration
public void disableFieldRegeneration()This method disables regeneration of the field and its children appearance stream. So all of its children in the hierarchy will also not be regenerated.Note that after this method is called field will be regenerated only during
enableFieldRegeneration()
call. -
enableFieldRegeneration
public void enableFieldRegeneration()This method enables regeneration of the field appearance stream. Please note that this method enables regeneration for the children of the field. Also, appearance will be regenerated during this method call.Should be called after
disableFieldRegeneration()
method call. -
disableCurrentFieldRegeneration
public void disableCurrentFieldRegeneration()This method disables regeneration of the current field appearance stream. -
enableCurrentFieldRegeneration
public void enableCurrentFieldRegeneration()This method enables regeneration of the current field appearance stream and regenerates it. -
isFieldRegenerationEnabled
public boolean isFieldRegenerationEnabled()This method checks if field appearance stream regeneration is enabled.- Returns:
- true if regeneration is enabled for this field (and all of its ancestors), false otherwise.
-
getAppearanceStates
Gets the appearance state names.- Returns:
- an array of Strings containing the names of the appearance states.
-
put
Inserts the value into thePdfDictionary
of this field and associates it with the specified key. If the key is already present in this field dictionary, this method will override the old value with the specified one.- Parameters:
-
key
- key to insert or to override. -
value
- the value to associate with the specified key. - Returns:
- the edited field.
-
remove
Removes the specified key from thePdfDictionary
of this field.- Parameters:
-
key
- key to be removed. - Returns:
- the edited field.
-
release
public void release()Releases underlying pdf object and other pdf entities used by wrapper. This method should be called instead of direct call toPdfObject.release()
if the wrapper is used. -
getDocument
Gets thePdfDocument
that owns that form field.- Returns:
-
the
PdfDocument
that owns that form field.
-
isWrappedObjectMustBeIndirect
protected boolean isWrappedObjectMustBeIndirect()Defines if the object behind this wrapper must be an indirect object in the resultant document.
If this method returns true it doesn't necessarily mean that object must be in the indirect state at any moment, but rather defines that when the object will be written to the document it will be transformed into indirect object if it's not indirect yet.
Return value of this method shouldn't depend on any logic, it should return always true or false.- Specified by:
-
isWrappedObjectMustBeIndirect
in classPdfObjectWrapper<PdfDictionary>
- Returns:
- true if in the resultant document the object behind the wrapper must be indirect, otherwise false.
-
setColor
Sets the text color and regenerates appearance stream.- Parameters:
-
color
- the new value for the Color. - Returns:
-
the edited
AbstractPdfFormField
.
-
setFont
Basic setter for thefont
property. Regenerates the field appearance after setting the new value. Note that the font will be added to the document so ensure that the font is embedded if it's a pdf/a document.- Parameters:
-
font
- The new font to be set. - Returns:
-
The edited
AbstractPdfFormField
.
-
setFontSize
Basic setter for thefontSize
property. Regenerates the field appearance after setting the new value.- Parameters:
-
fontSize
- The new font size to be set. - Returns:
-
The edited
AbstractPdfFormField
.
-
setFontSize
Basic setter for thefontSize
property. Regenerates the field appearance after setting the new value.- Parameters:
-
fontSize
- The new font size to be set. - Returns:
-
The edited
AbstractPdfFormField
.
-
setFontSizeAutoScale
Sets zero font size which will be interpreted as auto-size according to ISO 32000-1, 12.7.3.3.- Returns:
-
the edited
AbstractPdfFormField
.
-
setFontAndSize
Combined setter for thefont
andfontSize
properties. Regenerates the field appearance after setting the new value.- Parameters:
-
font
- The new font to be set. -
fontSize
- The new font size to be set. - Returns:
-
The edited
AbstractPdfFormField
.
-
isTerminalFormField
public boolean isTerminalFormField()Determines whether current form field is terminal or not.- Returns:
- true if this form field is a terminal one, false otherwise.
-
equals
Indicate whether some other object is "equal to" this one. Compares wrapped objects. -
hashCode
public int hashCode()Generate a hash code for this object.
-