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