[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
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).
[Example: Consider a WordprocessingML document which serves as the frameset container for a frameset consisting of the following three frames:
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. end example]
Parent Elements |
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>