Skip to main content
A newer version of this page is available. .

SectionBreakType Enum

Lists the types of a section break.

Declaration

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

Members

Name Description
Column

A new section starts on the next column on the page.

Continuous

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

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.