[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IReadOnlySignatureDetails.CountryName

CountryName Property

CountryName

Gets the "country name" field in the signature details dialog.

Use this property to read the country name stored in the signature metadata returned by Details.

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