SignatureInfo.GetSignatureDetail method (Office)

Displays a specified detail related to a signature.

Syntax

expression.GetSignatureDetail(sigdet)

expression An expression that returns a SignatureInfo object.

Parameters

Name Required/Optional Data type Description
sigdet Required SignatureDetail An enumerated value specifying which signature detail to display.

Return value

Variant

Example

The following example gets information on the suggested signer of the document.

Sub GetSigDetails() 
Dim objSignatureInfo As SignatureInfo 
Dim varDetail As Variant 
 
strDetail = objSignatureInfo.GetSignatureDetail(sigdetDelSuggSigner) 
 
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.