Share via


Frameset.FrameName Property

Word Developer Reference

Returns or sets the name of the specified frame on a frames page. Read/write String.

Syntax

expression.FrameName

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 name of the specified frame to "BottomFrame".

Visual Basic for Applications
  ActiveWindow.Document.Frameset _
    .ChildFramesetItem(3).FrameName = "BottomFrame"

See Also