Share via


Frameset.FramesetBorderWidth Property

Word Developer Reference

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.

Visual Basic for Applications
  With ActiveWindow.Document.Frameset
    .FramesetBorderColor = wdColorTan
    .FramesetBorderWidth = 6
End With

See Also