TdxExportFinalParagraphMark Enum
Enumerates criteria used to determine whether to place a final paragraph mark following the content in an exported RTF file.
Declaration
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