ToolBar::ToolBarButtonCollection::Count Property
.NET Framework (current version)
Gets the number of buttons in the toolbar button collection.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Implements
ICollection::CountThe Count property holds the actual number of ToolBarButton controls assigned to the collection. It is common to use the Count property value as the upper bounds of a loop to iterate through a collection. The index value of a collection is a zero-based index, so you must subtract one from the looping variable otherwise you will exceed the upper bounds of the collection and throw an exception.
The following code example displays the Count of the Buttons before and after the Clear method is called. This code requires that a ToolBar with at least one ToolBarButton has been created.
.NET Framework
Available since 1.1
Available since 1.1
Show: