彩票走势图

Word控件Spire.Doc 【评论】教程(5):如何在 C#、VB.NET 中回复 Word 中的评论

翻译|使用教程|编辑:胡涛|2022-12-13 10:11:33.707|阅读 150 次

概述:本文将分享如何在 C#、VB.NET 中回复 Word 中的评论,欢迎查阅~

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

慧都年终大促

Spire.Doc for .NET是一款专门对 Word 文档进行操作的 .NET 类库。在于帮助开发人员无需安装 Microsoft Word情况下,轻松快捷高效地创建、编辑、转换和打印 Microsoft Word 文档。拥有近10年专业开发经验Spire系列办公文档开发工具,专注于创建、编辑、转换和打印Word/PDF/Excel等格式文件处理,小巧便捷。

Spire.Doc for.NET 最新下载

在 Word 2013 及更高版本中,您可以回复批注,以便更轻松地了解整个对话。Spire.Doc 还允许程序员通过 ReplyToComment 方法插入评论作为对所选评论的回复。

第 1 步:创建一个 Document 对象并加载一个包含评论的 Word 文档。

Document doc = new Document();
doc.LoadFromFile("Comment.docx");

第 2 步:获取第一条评论。

Comment comment = doc.Comments[0];

第 3 步:创建新评论并指定作者和内容。

Comment replyComment = new Comment(doc);
replyComment.Format.Author = "Adam";
replyComment.Body.AddParagraph().AppendText("Exactly.");

第 4 步:将新评论添加为对所选评论的回复。

comment.ReplyToComment(replyComment);

第 5 步:保存到文件。

doc.SaveToFile("ReplyToComment.docx", FileFormat.Docx2013);

如何在 C#、VB.NET 中回复 Word 中的评论

完整代码

[C#]

using Spire.Doc;
using Spire.Doc.Fields;
namespace ReplyComment
{
class Program
{

static void Main(string[] args)
{

Document doc = new Document();
doc.LoadFromFile("Comment.docx");
Comment comment = doc.Comments[0];

Comment replyComment = new Comment(doc);
replyComment.Format.Author = "Adam";
replyComment.Body.AddParagraph().AppendText("Exactly.");
comment.ReplyToComment(replyComment);

doc.SaveToFile("ReplyToComment.docx", FileFormat.Docx2013);

}
}
}

[VB.NET]

Imports Spire.Doc
Imports Spire.Doc.Fields
Namespace ReplyComment
Class Program

Private Shared Sub Main(args As String())

Dim doc As New Document()
doc.LoadFromFile("Comment.docx")
Dim comment As Comment = doc.Comments(0)

Dim replyComment As New Comment(doc)
replyComment.Format.Author = "Adam"
replyComment.Body.AddParagraph().AppendText("Exactly.")
comment.ReplyToComment(replyComment)

doc.SaveToFile("ReplyToComment.docx", FileFormat.Docx2013)

End Sub
End Class
End Namespace

以上便是在C#、VB.NET如何在Word的评论中插入图片,如果您有其他问题也可以继续浏览本系列文章,获取相关教程,你还可以给我留言或者加入我们的官方技术交流群。


欢迎下载|体验更多E-iceblue产品

获取更多信息请咨询  ;技术交流Q群(767755948)


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP