Vcl.ListActns.TListControlItem

From RAD Studio API Documentation
Jump to: navigation, search

System.Classes.TCollectionItemSystem.Classes.TPersistentSystem.TObjectTListControlItem

Delphi

TListControlItem = class(TCollectionItem)

C++

class PASCALIMPLEMENTATION TListControlItem : public System::Classes::TCollectionItem

Properties

Type Visibility Source Unit Parent
class public
Vcl.ListActns.pas
Vcl.ListActns.hpp
Vcl.ListActns Vcl.ListActns

Description

TListControlItem represents an item with a text value, an image, and a data pointer.

TListControlItem represents a single item in a control that lists items. TListControlItem objects are used by TStaticListAction to represent the items in a variety of client controls such as list views, list boxes, and combo boxes. In addition, TListControlItem is the base class for TComboExItem, which is specialized to work with the TComboBoxEx control.

Each TListControlItem has

A text value, which it stores as the Caption property.

An associated image, which is identified by the ImageIndex property.

A data pointer, which it stores as the Data property.

See Also