Sets the position of the graphics pen in the VectorWorks document by moving a specified distance from the current pen location.
Horizontal and vertical offsets from the initial location. The final position of the pen at a point whose coordinates are (x+moveDX, y+moveDY).
PROCEDURE Move(move : REAL);def vs.Move(move):
return None| Name | Type | Description |
|---|---|---|
| move | REAL | X-Y offset distance. |
The difference between this and MoveTo is that this is relative, whereas MoveTo is absolute.
Move(6,1);
{ moves the graphics pen 6 units to the right }
{ and 1 unit up from the current position. }vs.Move(6, 1)VS Functions: MoveTo
Availability: from All Versions