Remove Annotations from DOCX using C#

Annotations in DOCX files, such as comments or tracked changes, can sometimes clutter documents, especially when preparing them for final distribution. To ensure that your documents are clean and professional, you may need to remove these annotations. This is a simple guide to help you remove annotations from DOCX using C#. If you’re preparing a DOCX file for distribution or official use, it’s essential to remove these annotations to ensure a clean presentation. Ensure that you have the necessary tools installed. You need to have .NET on your system and the redaction library, which will help you manage and remove annotations from DOCX files. Here are the main steps to delete annotations in DOCX using C#.

Steps to Remove Annotations from DOCX using C#

  1. Set up your development environment to use GroupDocs.Redaction for .NET, which will enable you to remove annotations from DOCX files
  2. Create an instance of the Redactor class, supplying the path to your DOCX file as a parameter in the constructor
  3. Create a DeleteAnnotationRedaction object and apply it to your document using the Redactor.Apply method
  4. Save the updated DOCX file to your disk by using the Redactor.Save method

Annotations in DOCX files serve as useful markers for edits and comments during document review, but they can clutter the final version. In the process of removing annotations, the focus is on streamlining the document by eliminating unnecessary marks and comments. This is crucial for ensuring that the final version of the document is clear and professional. Annotations are helpful during drafting and review, but they can make the document look messy and take attention away from the main content when it’s shared or published. By removing these annotations, you enhance the readability and overall presentation of the document. Following is the example of C# code to remove annotations from DOCX.

Code to Remove Annotations from DOCX using C#

using GroupDocs.Redaction.Options;
using GroupDocs.Redaction.Redactions;
namespace GroupDocs.Redaction
{
internal class RemoveAnnotationsfromDOCXusingCSharp
{
static void Main(string[] args)
{
// Set License to avoid the limitations of Redaction library
License lic = new License();
lic.SetLicense(@"GroupDocs.Redaction.lic");
// Control document redaction process, allowing to open,
// redact and save documents
using (Redactor redactor = new Redactor(@"sample.docx"))
{
// Remove all comments from the document, containing
// texts like “use”, “show” or “describe” in its body
redactor.Apply(new DeleteAnnotationRedaction("(?im:(use|show|describe))"));
redactor.Save(new SaveOptions()
{
AddSuffix = true,
RasterizeToPDF = false
});
}
}
}
}

With .NET already set up on your system, you can efficiently perform the process on Windows, macOS, or Linux without the need for any additional software installations. After setting up the suggested library and making the necessary file path adjustments, you can seamlessly incorporate the provided code example into your projects. This integration should proceed without any difficulties or obstacles, ensuring a smooth and hassle-free experience. Great job! You have now mastered the process of how to clear annotations in DOCX using C#.

In our earlier discussion, we shared a detailed guide on removing annotations from PDF files using C#. For more in-depth information, we recommend checking out our comprehensive tutorial on how to remove annotations from PDF using C#.

 English