TdxExportFinalParagraphMark Enum
In This Article
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
|
Selected
|
#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. |
Selected |
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
Tdx
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 Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Always
value in code.
See Also