SignatureProvider.NotifySignatureAdded Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Used to display a dialog box informing the user that the signing process has completed and providing additional functionality for the add-in.
public:
void NotifySignatureAdded(System::Object ^ ParentWindow, Microsoft::Office::Core::SignatureSetup ^ psigsetup, Microsoft::Office::Core::SignatureInfo ^ psiginfo);
public void NotifySignatureAdded (object ParentWindow, Microsoft.Office.Core.SignatureSetup psigsetup, Microsoft.Office.Core.SignatureInfo psiginfo);
abstract member NotifySignatureAdded : obj * Microsoft.Office.Core.SignatureSetup * Microsoft.Office.Core.SignatureInfo -> unit
Public Sub NotifySignatureAdded (ParentWindow As Object, psigsetup As SignatureSetup, psiginfo As SignatureInfo)
Parameters
- ParentWindow
- Object
Allows the host application to obtain the handle to the window containing the displayed dialog box.
- psigsetup
- SignatureSetup
Contains initial settings of the signature provider.
- psiginfo
- 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.