[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

type (Section Type)

This element specifies the type of the current section. The section type specifies how the contents of the current section shall be placed relative to the previous section.

WordprocessingML supports five distinct types of section breaks:

Next page section breaks (the default if type is not specified), which begin the new section on the following page.

Odd page section breaks, which begin the new section on the next odd-numbered page.

Even page section breaks, which begin the new section on the next even-numbered page.

Continuous section breaks, which begin the new section on the following paragraph. This means that continuous section breaks might not specify certain page-level section properties, since they must be inherited from the following section. These breaks, however, can specify other section properties, such as line numbering and footnote/endnote settings.

Column section breaks, which begin the new section on the next column on the page.

Parent Elements

sectPr2.6.17); sectPr2.6.18); sectPr2.6.19)

 

Attributes

Description

val (Section Type Setting)

Specifies the type of the current section.

 

[Example: Consider a section that shall start on the next page in the document. The WordprocessingML specifying this would look like:

 

<w:sectPr>

<w:type w:val="nextPage"/>
</w:sectPr>

 

The nextPage value specifies that this section starts on the next page. end example]

 

The possible values for this attribute are defined by the ST_SectionMark simple type2.18.84).

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

<complexType name="CT_SectType">

   <attribute name="val" type="ST_SectionMark"/>

</complexType>