ToolBar::ToolBarButtonCollection::RemoveAt Method (Int32)
.NET Framework (current version)
Removes a given button from the toolbar button collection.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- index
-
Type:
System::Int32
The indexed location of the ToolBarButton in the collection.
Implements
IList::RemoveAt(Int32)| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The index value is less than 0, or it is greater than the number of buttons in the collection. |
The Remove method removes the ToolBarButton at the specified location in the ToolBar::ToolBarButtonCollection. If you want to remove all ToolBarButton controls from the collection, use the Clear method.
The following code example removes the last ToolBarButton on a ToolBar. The index value of the toolbar button being removed is set equal to the Count property, minus one, since the ToolBarButton collection is a zero-based index.
.NET Framework
Available since 1.1
Available since 1.1
Show: