How to enable or disable change tracking in C #.
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 to True or False to enable or disable functionality.
Set
wordDocument.TrackRevisions = true;
Enable track changes:
Disable track changes:
wordDocument.TrackRevisions = false;