Procedure Duplicate copies the currently selected objects and moves them the specified offset distance.
PROCEDURE Duplicate(offset : REAL);def vs.Duplicate(offset):
return None| Name | Type | Description |
|---|---|---|
| offset | REAL | Offset value. |
If user has "Offset Duplications" turned off, Duplicate ignores the x/y.
Rect(0,1,1,0);
Duplicate(2,0);
{duplicates the rectangle 2 units right of the original}vs.Rect(0,1,1,0)
vs.Duplicate(2,0)
#{duplicates the rectangle 2 units right of the original}Availability: from All Versions