Reputation: 1388
In Excel 2007 you have the button "Track Changes" in the "Review" Ribbon. How can I perform this action through c#?
Upvotes: 2
Views: 2008
Reputation: 3565
The following line of code should do
Excel.Application.ActiveWorkbook.HighlightChangesOnScreen = true;
make sure the document has been saved.
Upvotes: 2