Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxHtmlNumberingListExportFormat Enum

Enumerates available list mark options in an exported HTML file.

#Declaration

Delphi
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