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