[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SignatureDetails.City

City Property

City

Gets or sets the "city" field in the signature details dialog.

Use this property to retrieve the city metadata stored in this SignatureDetails instance before applying a digital signature.

Declaration
public string City { get; set; }
Public Property City As String
Examples
SignatureDetails details = new SignatureDetails();
details.City = "Seattle";
string city = details.City;