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

TdxExportRootTag Enum

Enumerates available options that determine which root HTML tags the export routines use.

#Declaration

Delphi
TdxExportRootTag = (
    Html,
    Body
);

#Members

Name
Html
Body

#Remarks

Options include:

Value Description
Html Sets the <HTML></HTML> tag pair as the document root. The resulting HTML file includes the full set of root tags.
Body Sets the <BODY></BODY> tag pair as the document root. The export routines omit both the <HTML></HTML> and <HEAD></HEAD> tag pairs in the resulting HTML file.

The Rich Edit control’s Options.Export.Html.ExportRootTag property references the TdxExportRootTag type.

Note

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

See Also