| Name | Type | Description |
|---|---|---|
| Width |
Double
|
Specifies, in document units, the width of the range. |
| Height |
Double
|
Specifies, in document units, the height of the range. |
Sub Test() Dim x As Double, y As Double Dim sr As ShapeRange Set sr = ActiveLayer.Shapes.All If sr.Count > 0 Then ActiveDocument.ReferencePoint = cdrCenter sr.GetPosition x, y sr.SetSize x, 1 End If End Sub