System.Contnrs.TClassList.RemoveItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function RemoveItem(AClass: TClass; ADirection: TList.TDirection): Integer; inline;

C++

HIDESBASE int __fastcall RemoveItem(System::TClass AClass, System::Types::TDirection ADirection);

Properties

Type Visibility Source Unit Parent
function public
System.Contnrs.pas
System.Contnrs.hpp
System.Contnrs TClassList

Description

Removes an item from the list.

System.Contnrs.TClassList.RemoveItem inherits from System.Classes.TList.RemoveItem. All content below this line refers to System.Classes.TList.RemoveItem.

Removes an item from the list.

The RemoveItem method removes a specified item from the list. Because the search of the item is linear, it is an O(n) operation on a list with n entries. If the item is not found, -1 is returned.

See Also