AddNewFrame Method

Microsoft Word Visual Basic

Adds a new frame to a frames page.

expression.AddNewFrame(Where)

expression    Required. An expression that returns a Frameset object.

Where   Required WdFramesetNewFrameLocation. Sets the location where the new frame is to be added in relation to the specified frame.

WdFramesetNewFrameLocation can be one of these WdFramesetNewFrameLocation constants.
wdFramesetNewFrameBelow
wdFramesetNewFrameRight
wdFramesetNewFrameAbove
wdFramesetNewFrameLeft

Remarks

For more information on creating frames pages, see Creating frames pages.

Example

This example adds a new frame to the immediate right of the specified frame.

ActiveDocument.ActiveWindow.ActivePane.Frameset _
    .AddNewFrame wdFramesetNewFrameRight