Reference for the Mosaic class Charts::CoordList
|
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.
var Charts::Coord firstCoord = null;
Reference to the first coordinate, used to build up a list of coordinates.
var Charts::Coord lastCoord = null;
Reference to the last coordinate, used to build up a list of coordinates.