Frameset.FramesetBorderWidth Property (Word)
Returns or sets the width (in points) of the borders surrounding the frames on the specified frames page. Read/write Single.
Syntax
expression .FramesetBorderWidth
expression A variable that represents a Frameset object.
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