TdxRtfNumberingListExportFormat Enum
In This Article
Enumerates numbered list export modes.
#Declaration
Delphi
TdxRtfNumberingListExportFormat = (
PlainTextFormat,
RtfFormat
);
#Members
Name |
---|
Plain
|
Rtf
|
#Remarks
Options include:
Value | Description |
---|---|
Plain |
Numbered lists are saved as plain text, without RTF-specific instructions. |
Rtf |
Numbered lists are saved as text with autonumber instructions according to the RTF standard. |
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 Plain
value in code.
See Also