TdxExportRootTag Enum
In This Article
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
Tdx
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 Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Html
value in code.
See Also