CommandBarControl Interface

Represents a command bar control.

Namespace:  Microsoft.Office.Core
Assembly:  office (in office.dll)

Syntax

'Declaration
<GuidAttribute("000C0308-0000-0000-C000-000000000046")> _
Public Interface CommandBarControl _
    Inherits _IMsoOleAccDispObj
'Usage
Dim instance As CommandBarControl
[GuidAttribute("000C0308-0000-0000-C000-000000000046")]
public interface CommandBarControl : _IMsoOleAccDispObj

Remarks

The CommandBarControl object is a member of the CommandBarControls collection. The properties and methods of the CommandBarControl object are all shared by the CommandBarButton, CommandBarComboBox, and CommandBarPopup objects.

When writing code to work with custom command bar controls, you use the CommandBarButton, CommandBarComboBox, and CommandBarPopup objects. When writing code to work with built-in controls in the container application that cannot be represented by one of those three objects, you use the CommandBarControl object.

Use Controls(index), where index is the index number of a control, to return a CommandBarControl object. (The Type property of the control must be msoControlLabel, msoControlExpandingGrid, msoControlSplitExpandingGrid, msoControlGrid, or msoControlGauge.)

Note

Variables declared as CommandBarControl can be assigned CommandBarButton, CommandBarComboBox, and CommandBarPopup values.

You can also use the FindControl method to return a CommandBarControl object.

See Also

Reference

CommandBarControl Members

Microsoft.Office.Core Namespace