Share via


CommandBars.GetPressedMso Method

Office Developer Reference
Aa434606.vs_note(en-us,office.12).gif  Note
The use of CommandBars in some Microsoft Office applications has been superseded by the new Ribbon user interface. For more information, search help for the keyword "Ribbon."

Returns a value indicating whether the toggleButton control identified by the idMso parameter is pressed.

Syntax

expression.GetPressedMso(idMso)

expression   An expression that returns a CommandBars object.

Parameters

Name Required/Optional Data Type Description
idMso Required String Identifier for the control.

Return Value
Boolean

Example

The following sample returns True when the Bold button is pressed.

Visual Basic for Applications
  Application.CommandBars.GetPressedMso(“Bold”) 

See Also