[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISignatureSetup.SuggestedSignerEmail

SuggestedSignerEmail Property

SuggestedSignerEmail

Gets or sets the email address of the signer of the document. Read/write.

Declaration
string SuggestedSignerEmail { get; set; }
Property SuggestedSignerEmail As String
Examples
ISignature signature = workbook.Signatures.AddSignatureLine(worksheet, 100.0, 50.0, 192.0, 100.5);
ISignatureSetup setup = signature.Setup;
setup.SuggestedSignerEmail = "alex.wilson@example.com";
string email = setup.SuggestedSignerEmail;