Canvas::LineTo method¶
LineTo draws a line on the canvas from current pen position to the point specified by X and Y, and sets the pen position to (X, Y) coordinates.
Prototype¶
void LineTo(int x, int y)
void LineTo(int x, int y) throws IGRException;
def LineTo(self, x: int, y: int) -> void
void LineTo(int x, int y)
void LineTo(int x, int y)
HRESULT LineTo([in] int x, [in] int y)
Parameters¶
x: int
: The X coordinate for the new pen position.
y: int
: The Y coordinate for the new pen position.