Back to Devexpress

SectionBreakType Enum

aspnetcore-js-devexpress-dot-richedit-00cbb91e.md

latest789 B
Original Source

SectionBreakType Enum

Lists the types of a section break.

Declaration

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

Members

NameDescription
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.