Document.CommandBars 属性 (Word)

返回一个表示菜单栏和工具栏在 Microsoft Word 中的所有工具栏的 命令栏 集合。

语法

表达式CommandBars

expression 是必需的。 一个代表 Document 对象的变量。

备注

使用 CustomizationContext 属性设置的模板或文档上下文之前访问 命令栏 集合。

有关返回集合的单个成员的信息,请参阅 从集合中返回对象

示例

本示例增大所有命令栏按钮并激活工具提示。

With CommandBars 
 .LargeButtons = True 
 .DisplayTooltips = True 
End With

本示例在应用程序窗口底部显示"绘图"工具栏。

With CommandBars("Drawing") 
 .Visible = True 
 .Position = msoBarBottom 
End With

本示例将"版本"命令按钮添至 "常用" 工具栏。

CustomizationContext = NormalTemplate 
CommandBars("Standard").Controls.Add Type:=msoControlButton, _ 
 ID:=2522, Before:=4

另请参阅

Document 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。