Skip to main content

HtmlDocumentExporterOptions.UriExportType Property

Specifies how the links to external content are saved in the exported document.

Namespace: DevExpress.XtraSpreadsheet.Export

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

[DefaultValue(UriExportType.Relative)]
public UriExportType UriExportType { get; set; }

Property Value

Type Default Description
UriExportType Relative

A UriExportType enumeration member specifying an absolute or relative path.

Available values:

Name Description
Relative

The exported document contains relative paths to external content.

Absolute

The exported document contains absolute paths to external content.

Remarks

If the UriExportType property is set to UriExportType.Absolute, relative URIs are not generated and the relativeUri parameter in the IUriProvider.CreateCssUri and IUriProvider.CreateImageUri methods is null.

See Also