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

TdxUriExportType Enum

Enumerates available types of references to external resources that exported HTML documents use.

#Declaration

Delphi
TdxUriExportType = (
    Relative,
    Absolute
);

#Members

Name
Relative
Absolute

#Remarks

Options include:

Value Description
Relative An exported HTML document refers to its external content (such as CSS files, bitmaps, etc.) via relative links. This default option is useful if both the document and its external resources are stored within the same file system and always retain their relative positions.
Absolute An exported HTML document uses absolute paths to refer to the external content. This option is useful if all external resources are stored on a remote server, separate from HTML documents that refer to them.

The Rich Edit control’s Options.Export.Html.UriExportType property references the TdxUriExportType type.

Note

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

See Also