[]
Gets the "state or province" field in the signature details dialog.
Use this property to read the state or province stored in the signature metadata returned by Details.
string StateOrProvince { get; }
ReadOnly Property StateOrProvince As String
workbook.Open(GetSignedWorkbookStream());
ISignature signature = workbook.Signatures[0];
IReadOnlySignatureDetails details = signature.Details;
string stateOrProvince = details.StateOrProvince;