Frameset.FrameResizable Property (Word)
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.
With ActiveDocument.ActiveWindow.ActivePane.Frameset
.FrameDefaultURL = "C:\Documents\Order.htm"
.FrameResizable = True
End With