Classes.TCollectionItem
Contents |
Delphi Information
From Classes.pas
TCollectionItem = class(TPersistent)
Unit: Classes
Type: class
Inherited Class Members: Classes.TCollectionItem Members
Class Properties: Classes.TCollectionItem Properties
Class Methods: Classes.TCollectionItem Methods
Class Constructors & Destructors: Classes.TCollectionItem Constructors
C++ Information
From Classes.hpp
TCollectionItem = class(TPersistent)
Unit: Classes
Type: class
Inherited Class Members: Classes.TCollectionItem Members
Class Properties: Classes.TCollectionItem Properties
Class Methods: Classes.TCollectionItem Methods
Class Constructors & Destructors: Classes.TCollectionItem Constructors
Description
TCollectionItem represents an item in a collection.
A TCollection holds a group of TCollectionItem objects. TCollectionItems are created and destroyed by TCollection's Add and Clear methods. Each TCollectionItem has a Collection property that points to the TCollection object to which the item belongs.
Objects descending from TCollection can contain objects descending from TCollectionItem. For example, a TDBGridColumns object contains TColumn objects; these two classes are used by TDBGrid to represent grid columns.