Back to Devexpress

TdxHtmlNumberingListExportFormat Enum

vcl-dxrichedit-dot-options-caa9e0cf.md

latest1.3 KB
Original Source

TdxHtmlNumberingListExportFormat Enum

Enumerates available list mark options in an exported HTML file.

Declaration

delphi
TdxHtmlNumberingListExportFormat = (
    PlainTextFormat,
    HtmlFormat
);

Members

Name
PlainTextFormat
HtmlFormat

Remarks

Options include:

ValueDescription
PlainTextFormatThe control’s HTML export routines mark each list entry with a character as in plain text.
HtmlFormatThe 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

dxRichEdit.Options Unit