Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SectionBreakType Enum

Lists the types of a section break.

#Declaration

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