[]
Gets or sets the "postal code" field in the signature details dialog.
Use this property to read the postal or ZIP code stored in the signer details for a digital signature.
public string PostalCode { get; set; }
Public Property PostalCode As String
SignatureDetails details = new SignatureDetails();
details.PostalCode = "98052";
string postalCode = details.PostalCode;