Vcl.ComCtrls.TLVNotifyEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TLVNotifyEvent = procedure(Sender: TObject; Item: TListItem) of object;

C++

typedef void __fastcall (__closure *TLVNotifyEvent)(System::TObject* Sender, TListItem* Item);

Properties

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

Description

TLVNotifyEvent is the procedure type of the TCustomListView.OnGetImageIndex and TListView.OnGetImageIndex events.

Sender is the list view control that contains the item that is the cause of the notification.

Item is the item that is the cause of the notification.

See Also