Поделиться через


CommandBars.LargeButtons Property (Office)

Is True if the toolbar buttons displayed are larger than normal size. Read/write.

Note

The use of CommandBars in some Microsoft Office applications has been superseded by the new ribbon component of the Microsoft Office Fluent user interface. For more information, search Help for the keyword "ribbon."

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

See Also

Concepts

CommandBars Object

CommandBars Object Members