Skip to main content

TdxRichEditSectionStartType Enum

Enumerates available section break types.

Declaration

TdxRichEditSectionStartType = (
    NextPage,
    OddPage,
    EvenPage,
    Continuous,
    Column
);

Members

Name
NextPage
OddPage
EvenPage
Continuous
Column

Remarks

Options include:

Value Corresponding Command Description
NextPage InsertSectionBreakNextPage A new section begins on the next page.
OddPage InsertSectionBreakOddPage A new section begins on the next odd-numbered page. If the section break is on an odd-numbered page, the next even-numbered page is left blank.
EvenPage InsertSectionBreakEvenPage A new section begins on the next even-numbered page. If the section break is on an even-numbered page, the next odd-numbered page is left blank.
Continuous A new section begins on the same page.
Column InsertColumnBreak A new section begins in the next text column after a column break.

The IdxRichEditSection interface’s StartType property references the TdxRichEditSectionStartType type.

Note

TdxRichEditSectionStartType is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxRichEditSectionStartType.EvenPage (in Delphi) or TdxRichEditSectionStartType::EvenPage (in C++Builder) to refer to the EvenPage value in code.

See Also