Share via


Frameset.AddNewFrame Method

Word Developer Reference

Adds a new frame to a frames page.

Syntax

expression.AddNewFrame(Where)

expression   Required. A variable that represents a Frameset object.

Parameters

Name Required/Optional Data Type Description
Where Required WdFramesetNewFrameLocation Sets the location where the new frame is to be added in relation to the specified frame.

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.

Visual Basic for Applications
  ActiveDocument.ActiveWindow.ActivePane.Frameset _
    .AddNewFrame wdFramesetNewFrameRight

See Also