| Name | Type | Description |
|---|---|---|
| Divisions |
Long
|
Specifies the desired number of equal divisions for the shape. Values range from 2 to 360. |
| Gap |
Double
|
Specifies, in document units, the length of the gap between divisions. A value of 0 is permitted. |
| Group |
Boolean
|
Specifies whether to group the divisions. |
| Combine |
Boolean
|
Specifies whether to combine the divisions into a single compound path. A value of False leaves the divisions as separate. |
| DeleteSource |
Boolean
|
Specifies whether to delete the original shape. A value of False retains the original shape. |
Sub Test() Dim shpEllipse As Shape Dim shrRange As ShapeRange Set shpEllipse = ActiveLayer.CreateEllipse2(0,0,6,4) Set shrRange = shpEllipse.EqualDivide(7, 0.015, False, True) End Sub