Back to Devexpress

TdxExportFinalParagraphMark Enum

vcl-dxrichedit-dot-options-0af23681.md

latest1.2 KB
Original Source

TdxExportFinalParagraphMark Enum

Enumerates criteria used to determine whether to place a final paragraph mark following the content in an exported RTF file.

Declaration

delphi
TdxExportFinalParagraphMark = (
    Always,
    Never,
    SelectedOnly
);

Members

Name
Always
Never
SelectedOnly

Remarks

Options include:

ValueDescription
AlwaysThe ‘\par’ tag is always added to the end of an exported RTF document.
NeverThe ‘\par’ tag is never added to the end of an exported RTF document.
SelectedOnlyThe ‘\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

dxRichEdit.Options Unit