TdxUriExportType Enum
Enumerates available types of references to external resources that exported HTML documents use.
Declaration
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