Back to Devexpress

TdxRichEditSectionStartType Enum

vcl-dxrichedit-dot-nativeapi-1952b9d6.md

latest2.2 KB
Original Source

TdxRichEditSectionStartType Enum

Enumerates available section break types.

Declaration

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

Members

Name
NextPage
OddPage
EvenPage
Continuous
Column

Remarks

Options include:

ValueCorresponding CommandDescription
NextPageInsertSectionBreakNextPageA new section begins on the next page.
OddPageInsertSectionBreakOddPageA 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.
EvenPageInsertSectionBreakEvenPageA 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.
ContinuousA new section begins on the same page.
ColumnInsertColumnBreakA 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

dxRichEdit.NativeApi Unit