Spire.XLS is a professional Excel API that enables developers to create, manage, manipulate, convert and print Excel worksheets. Get free and professional technical support for Spire.XLS for .NET, Java, Android, C++, Python.

Tue Apr 07, 2020 7:19 am

While working with Excel workbook VSTO appliation using VS2019 and MS Office 2016.
How can we fetch highlighted cells in the worksheet which have been recently updated in the sheet?

vishakha.vats
 
Posts: 1
Joined: Tue Apr 07, 2020 6:58 am

Tue Apr 07, 2020 9:10 am

Hello,

Thanks for your inquiry.
Sorry at present our Spire.XLS doesn't support tracking changes on workbooks. However, we have added it as a new feature to our further upgrade list with the ticket SPIREXLS-1571. If it can be achieved in the future, we will let you know.

Sincerely,
Rachel
E-iceblue support team
User avatar

rachel.lei
 
Posts: 1571
Joined: Tue Jul 09, 2019 2:22 am

Fri Nov 06, 2020 11:05 am

Hello,

Thanks for your patience.
Glad to inform you that we just released Spire.XLS Pack(Hotfix) Version:10.11.2 that supports tracking changes on workbooks. Welcome to download it from the following links.
Website link: https://www.e-iceblue.com/Download/down ... t-now.html
NuGet link: https://www.nuget.org/packages/Spire.XLS/10.11.2

Code example:
Code: Select all
//Accept all tracked changes
Workbook workbook = new Workbook();
workbook.LoadFromFile(inputFile);
workbook.AcceptAllTrackedChanges();
workbook.SaveToFile(outputFile, FileFormat.Version2013);
//Reject all tracked changes
Workbook workbook = new Workbook();
workbook.LoadFromFile(inputFile);
workbook.RejectAllTrackedChanges();
workbook.SaveToFile(outputFile, FileFormat.Version2013);


Sincerely,
Rachel
E-iceblue support team
User avatar

rachel.lei
 
Posts: 1571
Joined: Tue Jul 09, 2019 2:22 am

Mon Nov 16, 2020 3:37 am

Hello,

Greetings from E-iceblue!
Have you tested the new feature? Looking forward to your feedback.

Sincerely,
Rachel
E-iceblue support team
User avatar

rachel.lei
 
Posts: 1571
Joined: Tue Jul 09, 2019 2:22 am

Return to Spire.XLS