如何在运行时向 Word 文档添加 Bookmark 控件
我想在 C# 应用程序中在运行时将书签添加到我的 Word 文档的特定范围。我找到了一种解决方案 Microsoft.Office.Tools.Word.Bookmark bookmark1; bookmark1 = this.Controls.AddBookmark(this.Paragraphs[1].Range, "bookmark1");
但错误表明 Windows 窗体没有 AddBookmark
的定义。请帮忙。
I want to add in a C# application a bookmark to a particular range to my Word document at runtime . I have found one solutionMicrosoft.Office.Tools.Word.Bookmark bookmark1;
bookmark1 = this.Controls.AddBookmark(this.Paragraphs[1].Range, "bookmark1");
But an error shows that the Windows form has no definition for AddBookmark
. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在使用 WinForms 应用程序,因此通过使用关键字
this
它将引用您正在使用的表单类,该类没有Controls.AddBookmark
的定义。我建议您看一下这里: http://msdn.microsoft.com/en -us/library/cc442946.aspx
这将向您展示如何创建一个单词插件,然后您可以使用此代码添加书签。
You are using a WinForms application, therefore by using the keyword
this
it will refer to the form class you are using which does not have a definition forControls.AddBookmark
.I suggest you take a look here: http://msdn.microsoft.com/en-us/library/cc442946.aspx
This will show you how to create a word addin from which you can then use this code to add a bookmark.