| Name | Type | Description |
|---|---|---|
| Plane | ||
| ReferencePoint | Specifies the reference point for the conversion. |
|
| ApplyToDuplicate |
Boolean
|
Specifies whether to apply the conversion to a duplicate, leaving the original shape range unchanged. |
Sub Test() Dim shp1 As Shape Dim shp2 As Shape Dim shpRng As ShapeRange Set shp1 = ActiveLayer.CreateRectangle2(0,0,3,6) Set shp2 = ActiveLayer.CreateRectangle2(2,2,5,3) Set shpRng = ActiveLayer.FindShapes(Type:=cdrRectangleShape) shpRng.Project cdrProjectTop, cdrProjectRight End Sub