| Name | Type | Description |
|---|---|---|
| RatioX |
Single
|
Specifies the width of the aspect ratio to use when stretching objects, expressed as a multiple of the current width. |
| RatioY |
Single
|
Specifies the height of the aspect ratio to use when stretching objects, expressed as a multiple of the current height. |
| UseAnchorPoint |
Boolean
|
Specifies whether to use an anchor point. |
| StretchAnchorX |
Double
|
Specifies, in document units, the x-coordinate of the anchor point to use when stretching the node range. |
| StretchAnchorY |
Double
|
Specifies, in document units, the y-coordinate of the anchor point to use when stretching the node range. |
Sub SkewNode() Dim nr as NodeRange Set nr = ActiveShape.Curve.Nodes.All With nr .Stretch 1, 1, False, 0, 0 End With End Sub