Skip to main content

TdxHtmlNumberingListExportFormat Enum

Enumerates available list mark options in an exported HTML file.

Declaration

TdxHtmlNumberingListExportFormat = (
    PlainTextFormat,
    HtmlFormat
);

Members

Name
PlainTextFormat
HtmlFormat

Remarks

Options include:

Value Description
PlainTextFormat The control’s HTML export routines mark each list entry with a character as in plain text.
HtmlFormat 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

TdxHtmlNumberingListExportFormat 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 TdxHtmlNumberingListExportFormat.HtmlFormat (in Delphi) or TdxHtmlNumberingListExportFormat::HtmlFormat (in C++Builder) to refer to the HtmlFormat value in code.

See Also