Reputation: 832
How do I enable or disable Track Changes option in C#.
Upvotes: 4
Views: 6587
Reputation: 300
Enable Track Changes :
wordDocument.TrackRevisions = true;
Disable Track Changes :
wordDocument.TrackRevisions = false;
Upvotes: 1
Reputation: 216303
I think you are looking for this property
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.
Upvotes: 8