Frames.Add method (Word)

Returns a Frame object that represents a new frame added to a range, selection, or document.

Syntax

expression.Add (Range)

expression An expression that returns a 'Frames' object.

Parameters

Name Required/Optional Data type Description
Range Required [RANGE] The range that you want the frame to surround.

Return value

Frame

Example

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)

See also

Frames Object

Support and feedback

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.