GraphicsPath.MoveToPoint

From Xojo Documentation

Method

GraphicsPath.MoveToPoint(x As Double, y As Double)

New in 2019r2

Supported for all project types and targets.

Moves to the point without drawing anything.

Parameters

Value Description
x The x coordinate of the point.
y The y coordinate of the point.

Sample Code

Var p As New GraphicsPath
p.MoveToPoint(50, 50)