System.Contnrs.TClassList.RemoveItem
Delphi
function RemoveItem(AClass: TClass; ADirection: TList.TDirection): NativeInt; inline;
C++
HIDESBASE System::NativeInt __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 form the Items array. The returned value is the index of the removed item.
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.