SignatureSetup Object

Office Developer Reference

Represents the information used to set up a signature packet.

Example

The following example sets various properties of the SignatureSetup object for a signature packet.

Visual Basic for Applications
  Dim objSigSetup As SignatureSetup
With objSigSetup
.AllowComments = True 
.ShowSignDate = True 
.SigningInstructions = "Please sign this document."
.SuggestedSignerEmail = "jdow@example.com"
Next

See Also