Comments can be comments on a piece of text or content, or a summary of the central idea of a paragraph, or a critique of the content of the article, a question, and a hint to yourself or others when reading. This article describes how to manipulate word annotations in c#/vb, mainly with the following points:
- Insert Word Annotations
- Modify Word Annotations
- Delete Word annotations
Using tools: Free Spire.doc for. NET 6.3 (Latest Community Edition)
Note: Before editing the code, note the Add Reference Sprie.Doc.dll (DLL file can be obtained in the Bin folder under the installation path)
1. Insert Word Annotations
C#
using Spire.Doc;using Spire.Doc.Documents;using Spire.Doc.Fields;namespace InsertComment_Word{ class Program { static void Main(string[] args) { //实例化一个Document类对象,并加载Word文档 Document document = new Document(); document.LoadFromFile("sample.docx"); //获取第一段第一节 Section section = document.Sections[0]; Paragraph paragraph = section.Paragraphs[0]; //添加文本到批注 string str = "This paragraph describes the origin and the purpose of WEF"; Comment comment = paragraph.AppendComment(str); //添加批注作者 comment.Format.Author = "E-iceblue"; //保存并打开文档 document.SaveToFile("Comments.docx", FileFormat.Docx2010); System.Diagnostics.Process.Start("Comments.docx"); } }}
vb.net
Imports Spire.DocImports Spire.Doc.DocumentsImports Spire.Doc.FieldsNamespace InsertComment_Word Class Program Private Shared Sub Main(ByVal args() As String) Dim document As Document = New Document document.LoadFromFile("sample.docx") Dim section As Section = document.Sections(0) Dim paragraph As Paragraph = section.Paragraphs(0) Dim str As String = "This paragraph describes the origin and the purpose of WEF" Dim comment As Comment = paragraph.AppendComment(str) comment.Format.Author = "E-iceblue" document.SaveToFile("Comments.docx", FileFormat.Docx2010) System.Diagnostics.Process.Start("Comments.docx") End Sub End ClassEnd Namespace
Test results:
2. Modify and delete word annotations
Test Document:
C#
using Spire.Doc;namespace ReplaceAndRemoveComment_Word{ class Program { static void Main(string[] args) { //初始化Document类实例,加载带有批注的Word文档 Document document = new Document(); document.LoadFromFile("test.docx"); //修改第一个批注内容 document.Comments[0].Body.Paragraphs[0].Replace("This paragraph describes the origin and the purpose of WEF", "What is the WEF ?", false, false); //移除第二个批注 document.Comments.RemoveAt(1); //保存并打开文档 document.SaveToFile("RemoveAndReplace.docx", FileFormat.Docx); System.Diagnostics.Process.Start("RemoveAndReplace.docx"); } }}
vb.net
Imports Spire.DocNamespace ReplaceAndRemoveComment_Word Class Program Private Shared Sub Main(ByVal args() As String) Dim document As Document = New Document document.LoadFromFile("test.docx") document.Comments(0).Body.Paragraphs(0).Replace("This paragraph describes the origin and the purpose of WEF", "What is the WEF ?", false, false) document.Comments.RemoveAt(1) document.SaveToFile("RemoveAndReplace.docx", FileFormat.Docx) System.Diagnostics.Process.Start("RemoveAndReplace.docx") End Sub End ClassEnd Namespace
Test results:
The above is about C #, VB. NET to manipulate the entire contents of Word annotations, thanks for reading!
Welcome reprint, Reproduced please indicate the source.
C #/vb.net Action word--Inserting, modifying, deleting word annotations