Bookmark.Comments 属性
获取一个 Comments 集合,该集合表示 Bookmark 控件中的所有注释。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)
语法
声明
ReadOnly Property Comments As Comments
Comments Comments { get; }
属性值
类型:Microsoft.Office.Interop.Word.Comments
一个 Comments 集合,表示 Bookmark 控件中的所有注释。
示例
下面的代码示例向文档中添加一个 Bookmark 控件,然后为该书签插入一条注释。
此示例针对的是文档级自定义项。
Private Sub BookmarkComments()
Dim commentText As Object = "This is sample comment text."
Me.Paragraphs(1).Range.InsertParagraphBefore()
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
Bookmark1.Text = "This is sample bookmark text."
Bookmark1.Comments.Add(Bookmark1.Range, commentText)
End Sub
private void BookmarkComments()
{
object commentText = "This is sample comment text.";
this.Paragraphs[1].Range.InsertParagraphBefore();
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[1].Range,
"bookmark1");
bookmark1.Text = "This is sample bookmark text.";
bookmark1.Comments.Add(bookmark1.Range, ref commentText);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。