[]
Represents the information used to set up a signature packet.
This interface provides the signer metadata and signing options for a signature line in a workbook, such as the suggested signer, signer email address, signing instructions, comment availability, and whether the sign date is displayed. It is typically obtained from a ISignature created for a worksheet signature line.
public interface ISignatureSetup
Public Interface ISignatureSetup
ISignature signature = workbook.Signatures.AddSignatureLine(worksheet, 100.0, 50.0);
ISignatureSetup setup = signature.Setup;
setup.SuggestedSigner = "John Williams";
setup.SuggestedSignerEmail = "john.williams@example.com";
setup.SigningInstructions = "Please review and sign this worksheet.";
| Name | Description |
|---|---|
| AllowComments | Gets or sets a Boolean value specifying whether the signer can enter comments in the Sign dialog box. Read/write. Use this property to determine whether comment entry is enabled for the signature line when the document is signed. |
| Id | Gets the ID of the signature for a document. This identifier belongs to the signature associated with this setup information. |
| ShowSignDate | Gets or sets a Boolean value indicating whether the date the document was signed should be displayed. Use this property to determine whether the signature line is configured to show the signing date after the document is signed. |
| SigningInstructions | Gets or sets the instructions for signing the document. Read/write. Use this property to retrieve the signing instructions configured for a signature line. |
| SuggestedSigner | Gets or sets the name of the principal signer of the document. |
| SuggestedSignerEmail | Gets or sets the email address of the signer of the document. Read/write. |
| SuggestedSignerLine2 | Gets or sets the second line of suggested signer information, such as the signer's title or role. This value is used as additional signer information for a signature line, such as the signer's title or role. |