SectionType
Enum
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:
C#
public enum SectionType
Fields
Continues the section on the same page without a page break, allowing layout changes mid-page.
C#
Continuous = 3
Starts the section on the next even-numbered page, adding a blank page if necessary.
C#
EvenPage = 1
Starts the section in the next column within a multi-column layout, inserting a column break.
C#
NextColumn = 4
Starts the section on the next available page, inserting a page break after the previous section.
C#
NextPage = 0
Starts the section on the next odd-numbered page, adding a blank page if necessary.
C#
OddPage = 2