| java.lang.Object | ||
| ↳ | com.pspdfkit.forms.FormField | |
| ↳ | com.pspdfkit.forms.SignatureFormField | |
Represents a signature field in a form. This is usually used to place a signature onto a page using an InkAnnotation
or it holds a digital signature which can be retrieved using getSignatureInfo().
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| List<? extends SignatureFormElement> |
getFormElements()
Retrieve list of form elements that represents this field visually.
| ||||||||||
| DigitalSignatureInfo |
getSignatureInfo()
Returns the digital signing information attached to this form element.
| ||||||||||
| void |
removeSignature()
Removes the digital signing information attached to this form field.
| ||||||||||
| Completable |
removeSignatureAsync()
Asynchronously removes the digital signing information attached to this form field.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.pspdfkit.forms.FormField
| |||||||||||
From class
java.lang.Object
| |||||||||||
Retrieve list of form elements that represents this field visually. Each FormElement
can be part of a single field and each field can contain multiple form elements.
Returns the digital signing information attached to this form element. If this element has no signature,
isSigned() of the returned signing information will be false.
DigitalSignatureInfo of this form field.
Removes the digital signing information attached to this form field. If this element has no signature this is a no-op.
Asynchronously removes the digital signing information attached to this form field.