This short tutorial guides on how to track changes in Word using C#. It provides details to set the IDE for using Aspose.Words for .NET, a list of steps, and a sample code showing how to turn on track changes in Word using C#. You will also learn to turn off the tracking and check the tracking status while working with the document.
Steps to Turn on Track Changes in Word using C#
- Set the IDE to use Aspose.Words for .NET to track changes
- Create a new Document and add a table to it
- Add a row and insert a cell in it
- Start tracking changes in the Word document using the StartTrackRevisions() method
- Add more content in the document for tracking
- Save the Word file and open it in MS Word to check the tracking
These steps explain how to track the changes in Word using C#. Create a Word file, add some content, and call the StartTrackRevisions() method with the author’s name and date/time to start tracking the changes. Append some more content before saving the Word file on the disk and open it in MS Word to see the revisions.
Code to Track Changes in Word DOC using C#
This code demonstrates how to use track changes in Word using C#. Call the StopTrackRevisions() method to stop tracking while working with the document using the API. Use the HasRevisions flags to check if the document has any tracked changes.
This article has taught us the process to start and stop tracking changes in a Word file. To transform a PDF file to EPUB, refer to the article Convert PDF to EPUB using C#.