ShapePathPoint

ShapePathPoint class

Represents an x-y coordinate within the path coordinate space.

class ShapePathPoint;

Properties

PropertyTypeDescription
xnumberGets and sets x coordinate for this position coordinate.
ynumberGets y coordinate for this position coordinate.

Methods

MethodDescription
getX()@deprecated. Please use the ‘x’ property instead. Gets and sets x coordinate for this position coordinate.
setX(number)@deprecated. Please use the ‘x’ property instead. Gets and sets x coordinate for this position coordinate.
getY()@deprecated. Please use the ‘y’ property instead. Gets y coordinate for this position coordinate.
setY(number)@deprecated. Please use the ‘y’ property instead. Gets y coordinate for this position coordinate.
isNull()Checks whether the implementation object is null.

x

Gets and sets x coordinate for this position coordinate.

x : number;

y

Gets y coordinate for this position coordinate.

y : number;

getX()

@deprecated. Please use the ‘x’ property instead. Gets and sets x coordinate for this position coordinate.

getX() : number;

setX(number)

@deprecated. Please use the ‘x’ property instead. Gets and sets x coordinate for this position coordinate.

setX(value: number) : void;

Parameters:

ParameterTypeDescription
valuenumberThe value to set.

getY()

@deprecated. Please use the ‘y’ property instead. Gets y coordinate for this position coordinate.

getY() : number;

setY(number)

@deprecated. Please use the ‘y’ property instead. Gets y coordinate for this position coordinate.

setY(value: number) : void;

Parameters:

ParameterTypeDescription
valuenumberThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;