DigitalSigningEvent Interface
Represents an event that is emitted when a digital signing operation is initiated.
export declare interface DigitalSigningEvent extends ViewerEvent
Remarks
This event contains the PDF document data and optional appearance information for the signature.
Fields
documentBytes
Gets the raw bytes of the PDF document to be signed.
readonly documentBytes: ArrayBuffer;
Remarks
This property contains the binary data that will be sent to the signing server for digital signature processing.
appearanceAnnotation
Gets or sets optional appearance information for the digital signature.
appearanceAnnotation?: Annotation;
Field Value
Remarks
This property can be used to specify how the signature should appear in the PDF document.
Inherited Fields
| defaultPrevented | Gets a value indicating whether the event's default action has been canceled. (Inherited from ViewerEvent) |
Inherited Methods
| preventDefault | Cancels the event if it is cancelable, without stopping further propagation of the event. (Inherited from ViewerEvent) |