DocumentBase.CommandBars 属性

获取一个 CommandBars 集合,该集合表示 Microsoft Office Word 中的菜单栏和所有工具栏。

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

语法

声明
Public ReadOnly Property CommandBars As CommandBars
public CommandBars CommandBars { get; }

属性值

类型:Microsoft.Office.Core.CommandBars
一个 CommandBars 集合,表示 Microsoft Office Word 中的菜单栏和所有工具栏。

备注

在访问 CommandBars 集合之前,使用 CustomizationContext 属性设置模板或文档上下文。

示例

下面的代码示例使**“绘图”**工具栏在应用程序的底部可见。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentCommandBars()
    Me.CommandBars("Drawing").Visible = True
    Me.CommandBars("Drawing").Position = Office.MsoBarPosition.msoBarBottom
End Sub
private void DocumentCommandBars()
{
    this.CommandBars["Drawing"].Visible = true;
    this.CommandBars["Drawing"].Position = Office.MsoBarPosition.msoBarBottom;
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间