<frameset>
(Nested Frameset Definition)
This element specifies a frameset which has been nested within another frameset within a WordprocessingML document. This WordprocessingML element is analogous to the frameset
element in HTML (when that frameset is the child of another frameset
element).
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 child <frameset>
element specifies the frameset definition for the inner frameset; that frameset consists of two frames (Frame 2
and Frame 3
in the image above) which have been laid out horizontally as columns. ]
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>