[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IReadOnlySignatureDetails.Address2

Address2 Property

Address2

Gets the "address2" field in the signature details dialog.

Use this property to read the second address line stored in the signature metadata returned by Details.

Declaration
string Address2 { get; }
ReadOnly Property Address2 As String
Examples
workbook.Open(GetSignedWorkbookStream());
ISignature signature = workbook.Signatures[0];
IReadOnlySignatureDetails details = signature.Details;
string address2 = details.Address2;