| Name | Type | Description |
|---|---|---|
| StretchX |
Double
|
|
| StretchY |
Double
|
Specifies the distance to stretch the shape vertically. If this value is omitted, it is assumed to be the same as the StretchX parameter value, resulting in a proportional stretch. |
| StretchCharactersSize |
Boolean
|
Specifies whether characters are stretched with the shape. |
Sub Test() Dim s As Shape ActiveDocument.ReferencePoint = cdrCenter For Each s In ActiveLayer.Shapes s.CreateSelection s.Stretch 2 Next s End Sub