[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IReadOnlySignatureDetails.SignatureComments

SignatureComments Property

SignatureComments

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.

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