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

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:

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