Vcl.ComCtrls.TCustomListView.OnInsert

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnInsert: TLVDeletedEvent read FOnInsert write FOnInsert;

C++

__property TLVDeletedEvent OnInsert = {read=FOnInsert, write=FOnInsert};

Properties

Type Visibility Source Unit Parent
event protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomListView

Description

Occurs immediately after a new item is inserted into the list view.

Write an OnInsert event handler to respond when an item has just been added to the list. The Item parameter is the TListItem object that was added to the Items property.

OnInsert is an event handler of type Vcl.ComCtrls.TLVDeletedEvent.

See Also