PowerPoint+VBA命令整理
摘要:
(5)Type属性:返回工具栏控件的类型,可通过VBA常量进行引用,常用的工具栏控件类型如下表所示:
常量名称
含义
msoControlButton
控制按钮
msoControlButtonDropdown
带下拉列表的按钮
msoControlButtonPopup
带弹出菜单的按钮
msoControlComboBox
下拉组合控制框
msoControlDropdown
下拉列表控制框
msoControlEdit
文本框
msoControlExpandingGrid
可扩展的表格
msoControlGraphicCombo
图像下拉组合框
msoControlGraphicDropdown
图像下拉列表框
msoControlGrid
表格
msoControlPopup
弹出菜单
5.CommandBarButton对象
该对象代表工具栏的按钮控件。
(1)OnAction属性:返回或设置Visual Basic代码过程名(该代码过程不可使用参数),该过程将在单击按钮后运行。
(2)Style属性:返回或设置工具栏按钮的显示方式。值可通过VBA常量进行设置,常用的工具栏按钮控件类型如下表所示:
常量名称
含义
msoButtonIcon
包含图标的按钮
msoButtonCaption
包含标题的按钮
ButtonIconandCaption
包含图标和标题的按钮
msoButtonIconAndCaptionBelow
包含图标和标题,且标题位于底部的按钮
msoButtonIconAndWrapCaption
包含图标和标题,且标题自动换行的按钮
msoButtonWrapCaption
页:
[1]