Object PmList (List of values)
Description:
Object represents a list of values.
This object is obsolete (but functional) and it is better to use the
PmArray object (items can be added and removed from an
PmArray by methods
Insert and
Remove).
Properties and methods:
GetCount | Returns the number of values present in the queue |
AddHead | Adds value to the beginning of the list |
AddTail | Adds value to the end of the list |
GetHead | Returns a value from beginning of the list |
GetTail | Returns a value from the end of the list |
RemoveHead | Removes value from beginning of the list |
RemoveTail | Removes value from the end of the list |
SaveToArray | Returns 1-dimensional array of values queue |
Note:
Values in this object form a list and can be accessed either from beginning (
Head) or from the end (
Tail) of the list. The values of the list can be:
History:
Pm8.03.08: Allows the application designer to create a
LIFO and
FIFO list of values in this object.