Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxLineBreakSubstitute Enum

Enumerates available line break interpretation modes.

#Declaration

Delphi
TdxLineBreakSubstitute = (
    None,
    Paragraph,
    Space
);

#Members

Name
None
Paragraph
Space

#Remarks

The Rich Edit control treats line breaks:

Value Description
None As is. No changes are made.
Paragraph As paragraph delimiters.
Space As space characters.

The following API members reference the TdxLineBreakSubstitute type:

Note

TdxLineBreakSubstitute 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 TdxLineBreakSubstitute.None (in Delphi) or TdxLineBreakSubstitute::None (in C++Builder) to refer to the None value in code.

See Also