TdxLineBreakSubstitute Enum
In This Article
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:
The Rich Edit control’s Options.Behavior.PasteLineBreakSubstitution property.
The TdxDocumentImporterOptions.LineBreakSubstitute property.
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 None
value in code.
See Also