DocumentBase.Controls 属性

获取文档中包含的托管控件的集合。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public ReadOnly Property Controls As ControlCollection
    Get
public ControlCollection Controls { get; }

属性值

类型:Microsoft.Office.Tools.Word.ControlCollection
一个包含文档中所有托管控件的 ControlCollection

备注

Office 解决方案中的文档可包含 Windows 窗体控件和宿主控件。 有关更多信息,请参见 Office 文档上的控件

示例

下面的代码示例向第一个段落添加文本,并创建一个包含该段落的 Bookmark 控件。 该代码随后显示一个包含文档中控件总数的消息框。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentControls()
    Me.Paragraphs(1).Range.InsertParagraphAfter()
    Me.Paragraphs(1).Range.Text = "This is some sample text."
    Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
    MessageBox.Show("Total number of controls: " & Me.Controls.Count.ToString())
End Sub
private void DocumentControls()
{
    this.Paragraphs[1].Range.InsertParagraphAfter();
    this.Paragraphs[1].Range.Text = "This is some sample text.";
    this.Controls.AddBookmark(this.Paragraphs[1].Range, "Bookmark1");
    MessageBox.Show("Total number of controls: " +
        this.Controls.Count.ToString());
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间

其他资源

Office 文档上的控件