docx
    Preparing search index...

    Variable SectionTypeConst

    SectionType: {
        CONTINUOUS: "continuous";
        EVEN_PAGE: "evenPage";
        NEXT_COLUMN: "nextColumn";
        NEXT_PAGE: "nextPage";
        ODD_PAGE: "oddPage";
    } = ...

    Specifies the type of section break.

    This determines where the section begins relative to the previous section.

    <xsd:simpleType name="ST_SectionMark">
    <xsd:restriction base="xsd:string">
    <xsd:enumeration value="nextPage"/>
    <xsd:enumeration value="nextColumn"/>
    <xsd:enumeration value="continuous"/>
    <xsd:enumeration value="evenPage"/>
    <xsd:enumeration value="oddPage"/>
    </xsd:restriction>
    </xsd:simpleType>

    Type Declaration

    • ReadonlyCONTINUOUS: "continuous"

      Section begins immediately following the previous section

    • ReadonlyEVEN_PAGE: "evenPage"

      Section begins on the next even-numbered page

    • ReadonlyNEXT_COLUMN: "nextColumn"

      Section begins on the next column

    • ReadonlyNEXT_PAGE: "nextPage"

      Section begins on the next page

    • ReadonlyODD_PAGE: "oddPage"

      Section begins on the next odd-numbered page