Is True if the toolbar buttons displayed are larger than normal size. Read/write.
Syntax
expression.LargeButtons
expression A variable that represents a CommandBars object.
Example
This example switches the display size of toolbar buttons on all command bars.
Set allBars = CommandBars
If allBars.LargeButtons Then
allBars.LargeButtons = False
Else
allBars.LargeButtons = True
End If