TdxLineBreakSubstitute Enum
Enumerates available line break interpretation modes.
Declaration
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
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