Application.CommandBars Property (Publisher)
Sets or returns a CommandBars collection that represents the menu bar and all the toolbars in Microsoft Publisher.
Syntax
expression .CommandBars
expression A variable that represents a Application object.
Return Value
CommandBars
Example
This example enlarges all command bar buttons, enables ToolTips, and shows all menu items when displaying menus.
Sub CmdBars()
With CommandBars
.LargeButtons = False
.DisplayTooltips = True
.AdaptiveMenus = False
End With
End Sub
This example displays the Objects toolbar at the bottom of the application window.
Sub ShowObjectsToolbar
With CommandBars("Objects")
.Visible = True
.Position = msoBarBottom
End With
End Sub