|
Pop
|
Removes and returns the item at the front of the queue. Call Pop to retrieve an item from the queue. Pop removes the next item from the queue (that is, the earliest item added), then returns the object of the deleted item.
To access the queue without removing an item, call GLists.TQStringQueue.Top .
|
|
PopItem(TObject)
|
Removes and returns the string and object at the front of the queue. Call PopItem to retrieve an item from the queue. PopItems removes the next item from the queue (that is, the earliest item added), then returns the string and object of the deleted item.
To access the queue without removing an item, call GLists.TQStringQueue.Top or GLists.TQStringQueue.TopString.
|
|
PopString
|
Removes and returns the string at the front of the queue. Call PopString to retrieve an item from the queue. PopString removes the next item from the queue (that is, the earliest item added), then returns the string of the deleted item.
To access the queue without removing an item, call GLists.TQStringQueue.TopString .
|
|
Push(TObject)
|
Adds an item to the end of the queue. Call Push to add an item to the queue.
To retrieve items added with Push, call GLists.TQStringQueue.Pop or GLists.TQStringQueue.Top .
|
|
PushItem(String,TObject)
|
Adds the input string and object to the end of the queue and returns the new node created for the item.
To retrieve items added with PushItem, call GLists.TQStringQueue.PopItem(TObject) or GLists.TQStringQueue.Top and GLists.TQStringQueue.TopString .
To push only the object on the queue, use the GLists.TQStringQueue.Push(TObject) method. To push only a string and an object on the queue, use the GLists.TQStringQueue.PushString(String) method.
|
|
PushString(String)
|
Adds the input Value string to the end of the queue and returns the new node created for the item. The Item property of the node will be nil.
To retrieve items added with Push, call GLists.TQStringQueue.Pop, GLists.TQStringQueue.PopString , or GLists.TQStringQueue.PopItem(TObject) or GLists.TQStringQueue.Top and GLists.TQStringQueue.TopString .
To push only the object on the queue, use the GLists.TQStringQueue.Push(TObject) method. To push both a string and an object on the queue, use the GLists.TQStringQueue.PushItem(String,TObject) method.
|
|
Top
|
Returns the object at the front of the queue. Call Top to access the queue without removing an item. Top returns the next item in the queue (that is, the earliest item added).
To remove an item from the queue, call GLists.TQStringQueue.Pop.
|
|
TopItem(TObject)
|
Returns the string and object at the front of the queue. Call TopItem to access the queue without removing an item. TopItem returns the next item in the queue (that is, the earliest item added).
To remove an item from the queue, call PopItemg.
|
|
TopString
|
Returns the string at the front of the queue. Call TopString to access the queue without removing an item. TopString returns the next item in the queue (that is, the earliest item added).
To remove an item from the queue, call GLists.TQStringQueue.PopString.
|