FramesetBorderWidth Property

Microsoft Word Visual Basic

Returns or sets the width (in points) of the borders surrounding the frames on the specified frames page. Read/write Single.

Remarks

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

Example

This example sets the width of frame borders in the specified frames page to 6 points.

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