Articles in this section
Category / Section

How to check if comment is resolved or not in Word document in ASP.NET Core?

3 mins read

Syncfusion Essential DocIO is a .NET Core Word library used to create, read, and edit Word documents programmatically without Microsoft Word or Interop dependencies. Using this library, you can find whether a comment is resolved or not in the Word document in C#.

Steps to find whether a comment is resolved or not in the Word document:

  1. Create a new C# .NET Core console application project.

    Picture1.png

  2. Install the Syncfusion.DocIO.Net.Core NuGet package as a reference to your .NET Core applications from NuGet.org.

    Picture2.png

Starting with v16.2.0.x, if you reference Syncfusion assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion license key in your application to use the components without trail message.

  1. Include the following namespace in the Program.cs file:
using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;
  1. Use the following code example to find whether a comment is resolved or not in the Word document:
using (FileStream inputStream = new FileStream(Path.GetFullPath("../../../Sample.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
{
  //Load an existing Word document.
  using (WordDocument document = new WordDocument(inputStream, FormatType.Docx))
  {
      //Loop through the comments in word document.
      foreach (WComment comment in document.Comments)
      {
          //Check whether the comment is resolved or not.
          Console.WriteLine(comment.Done ? "Resolved" : "Unresolved");
      }
  }
}

A complete working sample to find whether a comment is resolved or not in C# can be downloaded from GitHub.

Take a moment to peruse the documentation where you can find basic Word document processing options along with the features like mail merge, merge and split documents, protect the Word documents, and most importantly, the PDF and Image conversions with code examples.

Explore more about the rich set of Syncfusion Word Framework features.

Conclusion

I hope you enjoyed learning about how to find whether a comment is resolved or not in a Word document.

You can refer to our ASP.NET Core Word Library feature tour page to know about its other groundbreaking feature representations. You can also explore our .NET Core Word Library example to understand how to present and manipulate data.

For current customers, you can check out our .NET Core components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our .NET Core Word Library and other .NET Core components.

If you have any queries or require clarifications, please let us know in the comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied