ShapePathPointCollection

ShapePathPointCollection class

Represents all shape path points.

class ShapePathPointCollection;

Constructors

NameDescription
constructor()Default Constructor.

Methods

MethodDescription
get(number)Gets shape path point by index.
add(number, number)Adds a path point.
getCount()Gets the number of elements contained in.

constructor()

Default Constructor.

constructor();

get(number)

Gets shape path point by index.

get(index: number) : ShapePathPoint;

Parameters:

ParameterTypeDescription
indexnumberThe index

Returns

Returns ShapePathPoint object

add(number, number)

Adds a path point.

add(x: number, y: number) : number;

Parameters:

ParameterTypeDescription
xnumberThe x coordinate.
ynumberThe y coordinate.

getCount()

Gets the number of elements contained in.

getCount() : number;