[]
Gets the "monitors" field in the additional information dialog.
Use this property to read the number of monitors recorded in the signature metadata returned by Details.
int Monitors { get; }
ReadOnly Property Monitors As Integer
workbook.Open(GetSignedWorkbookStream());
ISignature signature = workbook.Signatures[0];
IReadOnlySignatureDetails details = signature.Details;
int monitors = details.Monitors;