CommandBars Property Example

This example enlarges all command bar buttons and enables ToolTips.

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

This example displays the Formatting command bar with the merged command bar set at the top of the application window.

With ActivePresentation.CommandBars("Formatting")
    .Visible = True
    .Position = msoBarTop
End With