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