Vcl.ComCtrls.TCustomListView.OnDeletion

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDeletion: TLVDeletedEvent read FOnDeletion write FOnDeletion;

C++

__property TLVDeletedEvent OnDeletion = {read=FOnDeletion, write=FOnDeletion};

Properties

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

Description

Occurs when an item in the list view is about to be deleted.

Write an OnDeletion event handler to respond when an item in the list is about to be deleted. The Item parameter is the TListItem object from the Items property that is about to be deleted.

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

See Also