Skip to main content

SectionBreakType Enum

Lists the types of a section break.

Declaration

export enum SectionBreakType {
    NextPage = 0,
    OddPage = 1,
    EvenPage = 2,
    Continuous = 3
}

Members

Name Description
Continuous

A new section starts on the following paragraph of the same page. Currently not supported.

EvenPage

A new section begins on the next even-numbered page.

NextPage

A new section starts on the next page.

OddPage

A new section begins on the next odd-numbered page.

Remarks

Values listed by this enumeration are used in the insertSectionBreak(position, type) method.