Share via


Frameset.FrameResizable Property

Word Developer Reference

True if the user can resize the specified frame when the frames page is viewed in a Web browser. Read/write Boolean.

Syntax

expression.FrameResizable

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 specified frame to be resizable when viewed in a Web browser.

Visual Basic for Applications
  With ActiveDocument.ActiveWindow.ActivePane.Frameset
    .FrameDefaultURL = "C:\Documents\Order.htm"
    .FrameResizable = True
End With

See Also