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