MenuAnimationStyle Property

Applies To

CommandBars collection object.

Description

Returns or sets the way the specified command bar is animated. Can be one of the following MsoMenuAnimation types: msoMenuAnimationNone, msoMenuAnimationRandom, msoMenuAnimationUnfold, or msoMenuAnimationSlide. Read/write.

Example

This example sets the options for all command bars in Microsoft Office.

With CommandBars
    .LargeButtons = True
    .DisplayTooltips = True
    .DisplayKeysInTooltips = True
    .MenuAnimationStyle = msoMenuAnimationUnfold
End With