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.

Visual Basic for Applications
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: