System.Contnrs.TObjectList.Extract

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Extract(Item: TObject): TObject; inline;

C++

HIDESBASE System::TObject* __fastcall Extract(System::TObject* Item);

Properties

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

Description

Removes a specified object from the list without freeing it.

Call Extract to remove an object from the list without freeing the object itself. After an object is removed, all the objects that follow it are moved up in index position and Count is decremented.

See Also