java.lang.Object | |
↳ | com.pspdfkit.signatures.SignatureAppearance |
Configures the appearance of digital signatures that are added to the document.
Use SignatureAppearance.Builder
to create an instance of this.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
class | SignatureAppearance.Builder | A helper class used for building the SignatureAppearance . |
|||||||||
enum | SignatureAppearance.SignatureAppearanceMode | Controls how the digital signature will appear after signing. | |||||||||
class | SignatureAppearance.SignatureGraphic | Contains the graphic that will be used as the signature. |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
SignatureAppearance() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract SignatureAppearance.SignatureAppearanceMode |
getSignatureAppearanceMode()
The
SignatureAppearance.SignatureAppearanceMode controls how the signature will be displayed. | ||||||||||
abstract SignatureAppearance.SignatureGraphic |
getSignatureGraphic()
The
SignatureAppearance.SignatureGraphic can be displayed instead of the signer name. | ||||||||||
abstract SignatureAppearance.SignatureGraphic |
getSignatureWatermark()
Gets the signature watermark that will be shown unless
setShowWatermark(boolean) is false. | ||||||||||
abstract boolean |
reuseExistingSignatureAppearanceStream()
Controls whether or not an existing appearance stream for the signature should be used.
| ||||||||||
abstract boolean |
showSignDate()
Indicates whether the date of the signature will be shown or not.
| ||||||||||
abstract boolean |
showSignatureLocation()
Indicates whether or not the location where the signature was created will be shown.
| ||||||||||
abstract boolean |
showSignatureReason()
Indicates whether or not the reason for the signature will be shown.
| ||||||||||
abstract boolean |
showSignerName()
Indicates whether the name of the signer will be shown or not.
| ||||||||||
abstract boolean |
showWatermark()
Indicates whether the PSPDFKit watermark will be shown.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
The SignatureAppearance.SignatureAppearanceMode
controls how the signature will be displayed. Defaults to
SIGNATURE_AND_DESCRIPTION
.
SignatureAppearance.SignatureAppearanceMode
to use.
The SignatureAppearance.SignatureGraphic
can be displayed instead of the signer name. If no SignatureAppearance.SignatureGraphic
is set the signer name will be displayed. If you want to disable the
default PSPDFKit watermark that is shown use setShowWatermark(boolean)
.
SignatureAppearance.SignatureGraphic
to use.
Gets the signature watermark that will be shown unless setShowWatermark(boolean)
is false.
SignatureAppearance.SignatureGraphic
to use.
Controls whether or not an existing appearance stream for the signature should be used.
Defaults to true
.
true
if an existing appearance stream should be reused, false
otherwise.
Indicates whether the date of the signature will be shown or not. Defaults to true
.
true
if the date should be shown, false
otherwise.
Indicates whether or not the location where the signature was created will be shown. Defaults
to false
.
true
if the location should be shown, false
otherwise.
Indicates whether or not the reason for the signature will be shown. Defaults to false
.
true
if the reason should be shown, false
otherwise.
Indicates whether the name of the signer will be shown or not. Defaults to true
.
true
if the name of the signer should be shown, false
otherwise.
Indicates whether the PSPDFKit watermark will be shown. Defaults to true
.
true
if the PSPDFKit watermark should be shown, false
otherwise.