Vcl.ComCtrls.TListItem.Deleting

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Deleting: Boolean read FDeleting;

C++

__property bool Deleting = {read=FDeleting, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TListItem

Description

Indicates whether an item's Destroy method has been called and the item is in the process of being deleted.

Deleting returns true if the item object is in the process of being deleted. Use Deleting to prevent infinite recursion in event handlers.

See Also