System.Contnrs.TObjectQueue.Push

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Push(AObject: TObject): TObject; inline;

C++

HIDESBASE System::TObject* __fastcall Push(System::TObject* AObject);

Properties

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

Description

Adds an object to the end of the queue.

Call Push to add an object to the queue.

AObject is the object to add to the queue.

Push returns a reference to the object that was just added (AObject).

See Also