|
FoxitPDFSDKforWeb
v9.1.0
Foxit PDF SDK for Web
|
An interface that describes all configuration options of customize the signature flow. More...
Public Member Functions | |
| Function | showSignatureProperty (callback:(signField:PDFField)=>Promise< void >) |
| Customize the signature property dialog flow. Note: If you want to customize the signature properties dialog, you should implement this method, and you also need to implement the 'verify' method. More... | |
| Function | showVerificationInfo (callback:(signField:PDFField)=>Promise< void >) |
| Customize the verification information dialog flow. Note: If you want to customize the dialog for the result of verifying signature, you should implement this method, and you also need to implement the 'verify' method. More... | |
| Function | sign (callback:(signField:PDFField)=>Promise< SignatureInfomation >) |
| Customize the signing flow. More... | |
| Function | verify (callback:(signField:PDFField)=>Promise< void >) |
| Customize the verification flow. More... | |
An interface that describes all configuration options of customize the signature flow.
| Function showSignatureProperty | ( | callback:(signField:PDFField) | , |
| Promise< void > | |||
| ) |
Customize the signature property dialog flow. Note: If you want to customize the signature properties dialog, you should implement this method, and you also need to implement the 'verify' method.
| callback | (signField:PDFField)=>Promise<void> - Triggered when showing the properity of the specified signature. |
| callback.signField | PDFField - The selected signed field. |
| Function showVerificationInfo | ( | callback:(signField:PDFField) | , |
| Promise< void > | |||
| ) |
Customize the verification information dialog flow. Note: If you want to customize the dialog for the result of verifying signature, you should implement this method, and you also need to implement the 'verify' method.
| callback | (signField:PDFField)=>Promise<void> - Triggered When verifying the specified signed field. |
| callback.signField | PDFField - The selected signed field. |
| Function sign | ( | callback:(signField:PDFField) | , |
| Promise< SignatureInfomation > | |||
| ) |
Customize the signing flow.
| callback | (signField:PDFField)=>Promise<SignatureInfomation> - Triggered when a new unsigned field is selected. |
| callback.signField | PDFField - The selected field. |
| callback.signInfo | SignatureInfomation - Specifies signature information. |