[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IReadOnlySignatureDetails.PostalCode

PostalCode Property

PostalCode

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

Use this property to read the postal code stored in the signature metadata returned by Details.

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