TdxPageBreakInsertMode Enum
In This Article
Enumerates page break insert modes.
#Declaration
Delphi
TdxPageBreakInsertMode = (
NewLine,
CurrentLine
);
#Members
Name |
---|
New
|
Current
|
#Remarks
Options include:
Value | Description |
---|---|
New |
A page break is inserted in the new line. |
Current |
A page break is inserted next to the caret position in the current line. |
A Rich Edit control’s Options.Behavior.PageBreakInsertMode property references the TdxPageBreakInsertMode 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 New
value in code.
See Also