<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.
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 |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
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>