| Name | Type | Description |
|---|---|---|
| DeltaX |
Double
|
Specifies the horizontal distance to move the nodes. |
| DeltaY |
Double
|
Specifies the vertical distance to move the nodes. |
| AnchorIndex |
Long
|
Specifies, by index number, the node in the node range to act as an anchor. |
| ElasticMode |
Boolean
|
Specifies whether to use Elastic Mode. If this value is set to True, only the node identified by the AnchorIndex parameter is moved by the exact offset specified, while the remaining nodes are offset by a smaller value depending on their position in the curve. |
Sub Test() Dim crv As Curve Dim nr As NodeRange Set crv = ActiveShape.Curve Set nr = crv.Nodes.AllExcluding(1, crv.Nodes.Count) nr.Move 0, 1 nr.Move 0, -1, nr.Count \ 2, True End Sub