CommandBars Property
Returns a CommandBars object that represents the Microsoft Graph command bars. Read-only CommandBars object.
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