FrameResizable Property

Microsoft Word Visual Basic

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

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