vcl-dxrichedit-dot-options-0af23681.md
Enumerates criteria used to determine whether to place a final paragraph mark following the content in an exported RTF file.
TdxExportFinalParagraphMark = (
Always,
Never,
SelectedOnly
);
| Name |
|---|
Always |
Never |
SelectedOnly |
Options include:
| Value | Description |
|---|---|
| Always | The ‘\par’ tag is always added to the end of an exported RTF document. |
| Never | The ‘\par’ tag is never added to the end of an exported RTF document. |
| SelectedOnly | The ‘\par’ tag is added to the end of an exported RTF content if the last character in the final exported document section is the carriage return. |
Note
TdxExportFinalParargaphMark 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 TdxExportFinalParargaphMark.Always (in Delphi) or TdxExportFinalParargaphMark::Always (in C++Builder) to refer to the Always value in code.
See Also