Skip to main content

CommandBars.LargeButtons property

Table of contents
  1. Syntax
  2. Example

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

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>