Data.DBXPlatform.TDBXArrayList.Remove
[–] Properties | |
---|---|
Type: procedure function
| |
Visibility: public | |
Source: Data.DBXPlatform.pas Data.DBXPlatform.hpp
| |
Unit: Data.DBXPlatform | |
Parent: TDBXArrayList |
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 */;
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.