Type of adjustment | Valid values |
Linear (horizontal or vertical) | Generally the value 0.0 represents the left or top edge of the shape and the value 1.0 represents the right or bottom edge of the shape. Valid values correspond to valid adjustments you can make to the shape manually. For example, if you can only pull an adjustment handle half way across the shape manually, the maximum value for the corresponding adjustment will be 0.5. For shapes such as callouts, where the values 0.0 and 1.0 represent the limits of the rectangle defined by the starting and ending points of the callout line, negative numbers and numbers greater than 1.0 are valid values. |
Radial | An adjustment value of 1.0 corresponds to the width of the shape. The maximum value is 0.5, or half way across the shape. |
Angle | Values are expressed in degrees. If you specify a value outside the range – 180 to 180, it will be normalized to be within that range. |
Set rac = ActiveDocument.Shapes.AddShape(msoShapeRightArrowCallout, 10, 10, 250, 190)
With rac.Adjustments
.Item(1) = 0.5 ' Adjusts width of text box.
.Item(2) = 0.15 ' Adjusts width of arrow head.
.Item(3) = 0.8 ' Adjusts length of arrow head.
.Item(4) = 0.4 ' Adjusts width of arrow neck.
End With
Properties
Application property, Count property, Creator property, Item property, Parent property.