Document.Frameset Property (Word)

Returns a Frameset object that represents an entire frames page or a single frame on a frames page. Read-only.

Syntax

expression .Frameset

expression A variable that represents a Document object.

Remarks

For more information on creating frames pages, see Creating frames pages.

Example

This example sets the color of frame borders in the specified frames page to tan.

With ActiveWindow.Document.Frameset 
 .FramesetBorderColor = wdColorTan 
 .FramesetBorderWidth = 6 
End With

See Also

Concepts

Document Object Members

Document Object