True if the toolbar buttons displayed are larger than normal size. Read/write Boolean.
Example
This example toggles 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