CommandBars property (Excel Graph)

Returns a CommandBars object that represents the Graph command bars. Read-only CommandBars object.

Syntax

expression.CommandBars

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example deletes all custom command bars that aren't visible.

For Each bar In myChart.Application.CommandBars 
 If Not bar.BuiltIn And Not bar.Visible Then bar.Delete 
Next

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.