彩票走势图

Word控件Spire.Doc 【评论】教程(1):在 C#、VB.NET 中插入 Word 注释

翻译|使用教程|编辑:胡涛|2022-11-28 11:17:54.683|阅读 163 次

概述:在本文中,您将学习如何使用spire.doc 在 C#、VB.NET 中插入 Word 注释

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

相关链接:

慧都年终大促

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

Spire.Doc for.NET 最新下载

文字注释,由用户插入以显示对单词、短语或段落的意见或附加信息,经常出现在文档页边空白处。读者可以根据评论了解更多关于内容的信息或修改内容以更正确或更清楚地表达自己的想法。

N是一个专业的.NET Word 组件,用于操作Word 文档,使用户能够使用C#、VB.NET 在Word 中插入注释。用户可以直接调用 paragraph.AppendComment(string) 方法为指定段落插入注释。此外,Spire.Doc for .NET 还为用户提供了 Comment 类。用户可以使用此类提供的 Format 属性来设置格式注释。

下面演示了评论可以有多完美。您也可以免费下载 Spire.Doc并进行试用。

插入文字注释

[C#]


using Spire.Doc;
using Spire.Doc.Documents;
using Spire.Doc.Fields;
namespace InsertComment
{
class Program
{

static void Main(string[] args)
{

//Load Document
Document document = new Document();
document.LoadFromFile(@"E:\work\Documents\WordDocuments\Humor Them.docx");

//Get Paragraph to Insert Comment
Section section = document.Sections[0];
Paragraph paragraph = section.Paragraphs[2];

//Insert Comment
string str = "This paragraph presents the first example to Humor Them.";
Comment comment = paragraph.AppendComment(str);
comment.Format.Author = "E-iceblue";
comment.Format.Initial = "CM";

//Save Document
document.SaveToFile("comments.docx", FileFormat.Docx2010);
System.Diagnostics.Process.Start("comments.docx");
}
}
}


[VB.NET]

Imports Spire.Doc
Imports Spire.Doc.Documents
Imports Spire.Doc.Fields
Namespace InsertComment
Class Program

Private Shared Sub Main(args As String())

'Load Document
Dim document As New Document()
document.LoadFromFile("E:\work\Documents\WordDocuments\Humor Them.docx")

'Get Paragraph to Insert Comment
Dim section As Section = document.Sections(0)
Dim paragraph As Paragraph = section.Paragraphs(2)

'Insert Comment
Dim str As String = "This paragraph presents the first example to Humor Them."
Dim comment As Comment = paragraph.AppendComment(str)
comment.Format.Author = "E-iceblue"
comment.Format.Initial = "CM"

'Save Document
document.SaveToFile("comments.docx", FileFormat.Docx2010)
System.Diagnostics.Process.Start("comments.docx")
End Sub
End Class
End Namespace

Spire.Doc 是一个 Microsoft Word 组件,它使用户能够直接执行范围广泛的 Word 文档处理任务,例如在 WPF、.NET 和 Silverlight 中生成、读取、写入和修改 Word 文档。

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


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

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


标签:

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP