Signature.ShowDetails method (Office)

Displays details related to a signature packet.

Syntax

expression.ShowDetails

expression An expression that returns a Signature object.

Example

The following example calls the ShowDetails method to show details of the Signature object.

Sub getSignatureDetails(ByVal objSignature As Signature) 
If objSignature.IsSigned then 
 Msgbox(The document has been signed with the following details: " & objSignature.ShowDetails) 
Else 
 Msgbox("The document has not been signed.") 
End If 
End Sub 

See also

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.