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

TdxCssPropertiesExportType Enum

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

#Declaration

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

#Members

Name
Style
Inline

#Remarks

Options include:

Value Description
Style The control’s HTML export routines embed cascade style sheet (CSS) information as an attribute into all HTML tags that refer to the CSS.
Link The export routines include cascade style sheet information as a link to an external CSS file.
&Inline The 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