<frameset> (Root Frameset Definition)

This element specifies that this document is the container for a frameset. This WordprocessingML element is analogous to the frameset element in HTML.

When the <frameset> element is present within a document, that document shall serve as a frameset definition only; all of its normal document content shall therefore not be displayed as long as it contains at least one child <frame> or <frameset> element.

If this element is omitted, then the currently document shall not be treated as a frameset definition; its regular document content shall be displayed.

example:

The frameset properties for this document are specified by the following WordprocessingML within the web page settings:

<w:frameset>
  <w:frameLayout w:val="rows" />
  <w:frame></w:frame>
  <w:frameset>
    <w:frameLayout w:val="cols" />
    <w:frame></w:frame>
    <w:frame></w:frame>
  </w:frameset>
</w:frameset>

The parent <frameset> element specifies that the current document is a frameset definition; that frameset consists of a single frame and another nested frameset stacked vertically. ]

Parent Elements

<webSettings>2.15.2.44)

Child Elements

Subclause

<frame> (Single Frame Properties)

§2.15.2.16

<frameLayout> (Frameset Layout)

§2.15.2.17

<frameset> (Nested Frameset Definition)

§2.15.2.19

<framesetSplitbar> (Frameset Splitter Properties)

§2.15.2.20

<sz> (Nested Frameset Size)

§2.15.2.40

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Frameset">
	<sequence>
	<element name="sz" type="CT_String" minOccurs="0"/>
	<element name="framesetSplitbar" type="CT_FramesetSplitbar" minOccurs="0"/>
	<element name="frameLayout" type="CT_FrameLayout" minOccurs="0"/>
	<choice minOccurs="0" maxOccurs="unbounded">
	<element name="frameset" type="CT_Frameset" minOccurs="0" maxOccurs="unbounded"/>
	<element name="frame" type="CT_Frame" minOccurs="0" maxOccurs="unbounded"/>
	</choice>
	</sequence>
</complexType>