Data.DBXPlatform.TDBXArrayList.Remove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Remove(Index: Integer); overload;
procedure Remove(Element: TObject); overload;

C++

void __fastcall Remove(int Index)/* overload */;
void __fastcall Remove(System::TObject* Element)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.DBXPlatform.pas
Data.DBXPlatform.hpp
Data.DBXPlatform TDBXArrayList

Description

Removes the first occurrence of a given object.

Remove has two overloads. The first overload removes the Indexth item, while the second overload removes the first occurrence of a given object from a TDBXArrayList.

See Also