LargeButtons Property

Applies To

CommandBars collection object.

Description

True if large toolbar buttons are displayed. Read/write Boolean.

Example

This example displays large toolbar buttons and ScreenTips on all command bars if the main menu bar that's active is named "Custom."

Set allBars = CommandBars
If allBars.ActiveMenuBar.Name = "Custom" Then
    allBars.LargeButtons = True
    allBars.ShowToolTips = True
End If