System.Contnrs.TIntegerBucketList.Remove

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Remove(AItem: NativeInt): NativeInt;

C++

HIDESBASE NativeInt __fastcall Remove(NativeInt AItem);

Properties

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

Description

Removes a specified item from the list and returns its data.

System.Contnrs.TIntegerBucketList.Remove inherits from System.Contnrs.TCustomBucketList.Remove. All content below this line refers to System.Contnrs.TCustomBucketList.Remove.

Removes a specified item from the list and returns its data.

Call Remove to delete a specific item from the list.

AItem is the item to remove.

Remove returns the data associated with AItem. If AItem is not in the bucket list, Remove returns nil (Delphi) or NULL (C++).

See Also