Back to Devexpress

TdxCssPropertiesExportType Enum

vcl-dxrichedit-dot-options-32db6af0.md

latest1.4 KB
Original Source

TdxCssPropertiesExportType Enum

Enumerates the available cascade style sheet (CSS) information export technique.

Declaration

delphi
TdxCssPropertiesExportType = (
    Style,
    Link,
    &Inline
);

Members

Name
Style
Link
Inline

Remarks

Options include:

ValueDescription
StyleThe control’s HTML export routines embed cascade style sheet (CSS) information as an attribute into all HTML tags that refer to the CSS.
LinkThe export routines include cascade style sheet information as a link to an external CSS file.
&InlineThe export routines include CSS information into dedicated <STYLE> HTML tags in the resulting file.

The Rich Edit control’s Options.Export.Html.CssPropertiesExportType property references the TdxCssPropertiesExportType type.

Note

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

See Also

dxRichEdit.Options Unit