CommandBarButton.Caption 属性 (Office)
获取或设置命令栏控件的标题文字。 读/写。
注意
某些 Microsoft Office 应用程序中对 CommandBars 的使用已由 Microsoft Office Fluent 用户界面的新功能区组件取代。 有关详细信息,请参阅 Office Fluent 功能区概述。
语法
表达式。标题
表达 一个代表 CommandBarButton 对象的变量。
返回值
字符串
示例
本示例将具有拼写检查按钮面的命令栏控件添加到自定义命令栏,然后将标题设置为 拼写检查器。
Set myBar = CommandBars.Add(Name:="Custom", _
Position:=msoBarTop, Temporary:=True)
myBar.Visible = True
Set myControl = myBar.Controls _
.Add(Type:=msoControlButton, Id:=2)
With myControl
.DescriptionText = "Starts the spelling checker"
.Caption = "Spelling checker"
End With
注意
控件的标题也可作为默认的“屏幕提示”显示。
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。