lineTo method

Adds a new point to a subpath and connects that point to the last point in the subpath by using a straight line.

 

Syntax

object.lineTo(x, y);

Parameters

  • x [in]
    Type: number

    The x-coordinate, in pixels.

  • y [in]
    Type: number

    The y-coordinate, in pixels.

Return value

This method does not return a value.

Standards information

See also

ICanvasRenderingContext2D::moveTo