TdxCssPropertiesExportType Enum
Enumerates the available cascade style sheet (CSS) information export technique.
Declaration
TdxCssPropertiesExportType = (
Style,
Link,
&Inline
);
Members
| Name |
|---|
Style
|
Link
|
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