Hello,
we got an excel document for which HasRevisions
returns true although the option to track changes is noch checked and the document and there are also no changes displayed to accept/reject (option is disabled by excel).
Screenshots are from German localized Excel as I was unable to install English language pack on my work device but it should look familiar.
2022-05-18_10-30-52.png (4.7 KB)
2022-05-18_10-30-57.png (4.3 KB)
Test code
static void Main(string[] args)
{
var lic = new License();
lic.SetLicense(@"S:\Aspose.Total.Net.lic");
var wb = new Workbook(@"S:\tmp\xls\in.xls");
Console.WriteLine($"Has revisions: {wb.HasRevisions}");
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
Result:
image.png (2.6 KB)
Testing document:
files.zip (14.1 KB)
Thanks for your help,
Daniel