Enum
SectionType

Specifies how a section begins relative to the previous section, controlling page breaks and content flow continuity.

Definition

Namespace:Telerik.Windows.Documents.Flow.Model.Styles

Assembly:Telerik.Windows.Documents.Flow.dll

Syntax:

cs-api-definition
public enum SectionType

Fields

Continuous

Continues the section on the same page without a page break, allowing layout changes mid-page.

Declaration

cs-api-definition
Continuous = 3

Field Value

SectionType

EvenPage

Starts the section on the next even-numbered page, adding a blank page if necessary.

Declaration

cs-api-definition
EvenPage = 1

Field Value

SectionType

NextColumn

Starts the section in the next column within a multi-column layout, inserting a column break.

Declaration

cs-api-definition
NextColumn = 4

Field Value

SectionType

NextPage

Starts the section on the next available page, inserting a page break after the previous section.

Declaration

cs-api-definition
NextPage = 0

Field Value

SectionType

OddPage

Starts the section on the next odd-numbered page, adding a blank page if necessary.

Declaration

cs-api-definition
OddPage = 2

Field Value

SectionType