SignatureProvider.NotifySignatureAdded Method
Used to display a dialog box informing the user that the signing process has completed and providing additional functionality for the add-in.
Note
|
|---|
| Signature providers are implemented exclusively in custom COM add-ins and cannot be implemented in Microsoft Visual Basic for Applications (VBA). |
Syntax
expression.NotifySignatureAdded(ParentWindow, psigsetup, psiginfo)
expression An expression that returns a SignatureProvider object.
Parameters
| Name | Required/Optional | Data Type | Description |
|---|---|---|---|
| ParentWindow | Required | IOleWindow | Allows the host application to obtain the handle to the window containing the displayed dialog box. |
| psigsetup | Required | SignatureSetup | Contains initial settings of the signature provider. |
| psiginfo | Required | SignatureInfo | Contains information about the signature provider add-in. |
Remarks
This method is called when the signing process has completed. Allows a signature provider add-in the ability to add additional functionality to the add-in. For example, if you wanted to offer an archive service where a user could upload their signed document, you could use this method to initiate that process.
Example
The following example, written in C#, shows the implementation of the NotifySignatureAdded method in a custom signature provider project.
| C# |
|---|
|
Note