Vcl.ComCtrls.TLVCreateItemClassEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TLVCreateItemClassEvent = procedure(Sender: TCustomListView; var ItemClass: TListItemClass) of object;

C++

typedef void __fastcall (__closure *TLVCreateItemClassEvent)(TCustomListView* Sender, TListItemClass &ItemClass);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls Vcl.ComCtrls

Description

TLVCreateItemClassEvent is a procedure called by the OnCreateItemClass event.

Sender is the list view object that needs to add a new panel.

ItemClass returns a class reference that is instantiated to create a new item object.

See Also