Vcl.ComCtrls.TListItem.Data

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Data: TCustomData read FData write SetData;

C++

__property void * Data = {read=FData, write=SetData};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TListItem

Description

Specifies any application-specific data associated with the list item.

Use Data to associate arbitrary data structure with the list item. When the user selects or deletes the list item, Data allows the application to quickly access information about the meaning of the list item to implement the appropriate response.

See Also