Back to Devexpress

TdxExportRootTag Enum

vcl-dxrichedit-dot-options-a22557b7.md

latest1.3 KB
Original Source

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:

ValueDescription
HtmlSets the <HTML></HTML> tag pair as the document root. The resulting HTML file includes the full set of root tags.
BodySets 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

dxRichEdit.Options Unit