TdxHtmlNumberingListExportFormat Enum
In This Article
Enumerates available list mark options in an exported HTML file.
#Declaration
Delphi
TdxHtmlNumberingListExportFormat = (
PlainTextFormat,
HtmlFormat
);
#Members
Name |
---|
Plain
|
Html
|
#Remarks
Options include:
Value | Description |
---|---|
Plain |
The control’s HTML export routines mark each list entry with a character as in plain text. |
Html |
The export routines mark lists with with HTML tag pairs (such as <ol></ol>, <ul></ul>, etc.). |
The Rich Edit control’s Options.Export.Html.HtmlNumberingListExportFormat property references the TdxHtmlNumberingListExportFormat type.
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 Html
value in code.
See Also