com.pspdfkit.signatures.DocumentSignatureInfo |
Contains information about signatures of a document. Can be retrieved via getDocumentSignatureInfoAsync()
Note that form editing must be enabled in license for this to return data.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract Calendar |
getLatestSignatureCreationDate()
Returns latest signing date of all signatures in the document.
| ||||||||||
abstract List<SignatureFormField> |
getSignatureFormFields()
Returns all signature fields in this document.
| ||||||||||
abstract List<String> |
getSigners()
Returns a list of names of all signers in the document.
| ||||||||||
abstract boolean |
isSigned()
Returns
true if the document contains a signature. | ||||||||||
abstract ValidationStatus |
isValid()
Validates signatures in the document and returns an overall status.
| ||||||||||
abstract void |
removeSignatureFormField(SignatureFormField signatureFormField)
Removes the signature form field from document.
|
Returns latest signing date of all signatures in the document.
null
if such data doesn't exist.
Returns all signature fields in this document.
Returns a list of names of all signers in the document.
Returns true
if the document contains a signature. It WILL NOT check the
signature for validity.
Removes the signature form field from document.
signatureFormField | The SignatureFormField to remove.
|
---|