TdxRichEditSectionStartType Enum
In This Article
Enumerates available section break types.
#Declaration
Delphi
TdxRichEditSectionStartType = (
NextPage,
OddPage,
EvenPage,
Continuous,
Column
);
#Members
Name |
---|
Next
|
Odd
|
Even
|
Continuous
|
Column
|
#Remarks
Options include:
Value | Corresponding Command | Description |
---|---|---|
Next |
Insert |
A new section begins on the next page. |
Odd |
Insert |
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. |
Even |
Insert |
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 |
Insert |
A new section begins in the next text column after a column break. |
The IdxRichEditSection interface’s StartType property references the TdxRichEditSectionStartType type.
Note
Tdx
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 Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Even
value in code.
See Also