Skip to main content

TcxCustomListView.OnInsert Event

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

Declaration

property OnInsert: TLVDeletedEvent read; write;

Remarks

The OnInsert event occurs after the new item is inserted into the list view.

Sender specifies the TcxCustomInnerListView.

Item represents the inserted item.

Example:

procedure TMainForm.ListViewInsert(Sender: TObject; Item: TListItem);
begin
  StatusBar.Panels[1].Text := 'Item ' + Item.Caption + ' is inserted';
end;
See Also