[]
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.
string Address2 { get; }
ReadOnly Property Address2 As String
workbook.Open(GetSignedWorkbookStream());
ISignature signature = workbook.Signatures[0];
IReadOnlySignatureDetails details = signature.Details;
string address2 = details.Address2;