| Name | Type | Description |
|---|---|---|
| Angle |
Double
|
|
| UseCenterPoint |
Boolean
|
Specifies whether to rotate the node range around its center point. |
| RotationCenterX |
Double
|
Specifies the x-coordinate of the center of rotation. |
| RotationCenterY |
Double
|
Specifies the y-coordinate of the center of rotation. |
Sub Test() Dim nr As NodeRange Set nr = ActiveShape.Curve.Selection ActiveDocument.ReferencePoint = cdrCenter nr.Rotate 30 End Sub