API:Vcl.ComCtrls.TListView.OnInsert

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnInsert;

C++

__property OnInsert;

Properties

Type Visibility Source Unit Parent
event published
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TListView

Description

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

Vcl.ComCtrls.TListView.OnInsert inherits from Vcl.ComCtrls.TCustomListView.OnInsert. All content below this line refers to Vcl.ComCtrls.TCustomListView.OnInsert.

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