Sets the position of the graphics pen in the VectorWorks document using absolute coordinate values. The parameter specifies the X-Y coordinate location where the pen should be moved.
PROCEDURE MoveTo(pX,pY : REAL);def vs.MoveTo(p):
return None| Name | Type | Description |
|---|---|---|
| p | REAL | X-Y coordinate location. |
If you want to move a relative distance from the existing pen position, use Move.
MoveTo(4,3);
{moves the graphics pen to (4,3)}vs.MoveTo(4, 3)VS Functions: Move
Availability: from All Versions