ToolBar.ToolBarButtonCollection(ToolBar) Constructor

Definition

Initializes a new instance of the ToolBar.ToolBarButtonCollection class and assigns it to the specified toolbar.

public:
 ToolBarButtonCollection(System::Windows::Forms::ToolBar ^ owner);
public ToolBarButtonCollection (System.Windows.Forms.ToolBar owner);
new System.Windows.Forms.ToolBar.ToolBarButtonCollection : System.Windows.Forms.ToolBar -> System.Windows.Forms.ToolBar.ToolBarButtonCollection
Public Sub New (owner As ToolBar)

Parameters

owner
ToolBar

The ToolBar that is the parent of the collection of ToolBarButton controls.

Remarks

You do not typically create a ToolBar.ToolBarButtonCollection and explicitly call its constructor. By referencing the Buttons property of the ToolBar control, a ToolBar.ToolBarButtonCollection is created. You can then gain access to its properties and methods, and assign ToolBarButton controls to the collection.

Applies to

See also