T
The type of the BarItem stored in the collection.
ICreate.Controls.Bars Send comments on this topic.
Generic BarItemCollection Class
See Also  Members  
ICreate.Controls.Bars Namespace : Generic BarItemCollection Class






A collection class used to store the BarItem components of a Bar.

Syntax

Visual Basic (Declaration) 
Public Class BarItemCollection(Of T As BarItem) 
   Inherits CollectionBase
Visual Basic (Usage)Copy Code
Dim instance As BarItemCollection(Of T)
C# 
public class BarItemCollection<T> : CollectionBase where T: BarItem
Delphi 
public class BarItemCollection = class(CollectionBase)
JScript 
JScript does not support Generics.
Managed Extensions for C++ 
public __gc class BarItemCollection<T> : public CollectionBase where T: BarItem
C++/CLI 
generic<typename T>
public ref class BarItemCollection : public CollectionBase where T: BarItem

Type Parameters

T
The type of the BarItem stored in the collection.

Remarks

BarItemCollection is a generic used by ButtonBar, SideBar and TaskBar to store the bar items. ButtonBar uses the BarItemCollection to store ButtonBarItem instances. SideBar uses the BarItemCollection to store SideBarItem instance. TaskBar uses the BarItemCollection to store TaskBarItem instance.

Inheritance Hierarchy

System.Object
   System.Collections.CollectionBase
      ICreate.Controls.Bars.BarItemCollection

Requirements

Namespace: ICreate.Controls.Bars

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: ICreate.Controls.Bars (in ICreate.Controls.Bars.dll)

See Also