Frames.Add method (Word)
Returns a Frame object that represents a new frame added to a range, selection, or document.
expression.Add (Range)
expression An expression that returns a 'Frames' object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Range | Required | [RANGE] | The range that you want the frame to surround. |
Frame
This example adds a frame around the selection.
ActiveDocument.Frames.Add Range:=Selection.Range
This example adds a frame around the third paragraph in the selection.
Set myFrame = Selection.Frames _
.Add(Range:=Selection.Paragraphs(3).Range)
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.