Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Microsost Office Interop Word - enable/disable track changes in C#

How do I enable or disable Track Changes option in C#.

like image 221
Agamand The True Avatar asked Dec 15 '22 21:12

Agamand The True


1 Answers

I think you are looking for this property

Document.TrackRevisions

as from MSDN

This property returns True if changes are tracked in the specified document, and False if they are not. Set the property value to True or False to enable or disable the functionality.

like image 172
Steve Avatar answered Apr 07 '23 18:04

Steve