Constant | Description |
wdFrameAuto | Sets the width according to the width of the item in the frame. |
wdFrameExact | Sets the width to an exact value specified by the Width property. |
wdFrameAtLeast | Sets the width to a value equal to or greater than the value specified by the Width property. |
If ActiveDocument.Frames.Count >= 1 Then
With ActiveDocument.Frames(ActiveDocument.Frames.Count)
.WidthRule = wdFrameExact
.Width = 72
End With
End If