Frame Object


Aa662218.parchild(en-us,office.10).gifFrames (Frame)
Aa662218.space(en-us,office.10).gifAa662218.parchild(en-us,office.10).gif

Represents a frame. The Frame object is a member of the Frames collection. The Frames collection includes all frames in a selection, range, or document.

Using the Frame Object

Use Frames(index), where index is the index number, to return a single Frame object. The index number represents the position of the frame in the selection, range, or document. The following example allows text to wrap around the first frame in the active document.

  ActiveDocument.Frames(1).TextWrap = True

Use the Add method to add a frame around a range. The following example adds a frame around the first paragraph in the active document.

  ActiveDocument.Frames.Add _
    Range:=ActiveDocument.Paragraphs(1).Range

Remarks

You can wrap text around Shape or ShapeRange objects by using the WrapFormat property. You can position a Shape or ShapeRange object by using the Top and Left properties.