System.Contnrs.TComponentList.RemoveItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function RemoveItem(AComponent: TComponent; ADirection: TList.TDirection): NativeInt; inline;

C++

HIDESBASE System::NativeInt __fastcall RemoveItem(System::Classes::TComponent* AComponent, System::Types::TDirection ADirection);

Properties

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

Description

Removes an item from the list. 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.

See Also