[]
Gets the "horizontal resolution" field in the additional information dialog.
Use this property to read the horizontal display resolution stored in the signature metadata returned by Details.
int HorizontalResolution { get; }
ReadOnly Property HorizontalResolution As Integer
workbook.Open(GetSignedWorkbookStream());
ISignature signature = workbook.Signatures[0];
IReadOnlySignatureDetails details = signature.Details;
int horizontalResolution = details.HorizontalResolution;