Reference for the Mosaic class Charts::CoordList

Charts::CoordList
MaxNoOfItems
NoOfItems
AddCoord()
ClearList()
GetCoord()

The class 'CoordList' implements a list of X/Y coordinates used to describe a complete graph.

method void AddCoord
(
arg float aX,
arg float aY
);

The method AddCoord stores the given coordinate at the end of the chained list of coordinates.

method void ClearList();

The method ClearList is used to clear the list of coordinates.

method Charts::Coord GetCoord
(
arg int32 aIndex
);

The method GetCoord returns the coordinate object with the given index.

property int32 MaxNoOfItems = 10;

The property MaxNoOfItems contains the maximum number of coordinates stored within the chained list of coordinates.

property int32 NoOfItems = 0;

The property NoOfItems contains the number of coordinates within the chained list of coordinates.