Skip to main content
A newer version of this page is available. .

ReportViewer.ImagesEmbeddingMode Property

Specifies the mode for embedding images in ASP.NET controls to support displaying images in different web browsers.

Namespace: DevExpress.XtraReports.Web

Assembly: DevExpress.XtraReports.v18.2.Web.WebForms.dll

Declaration

[SRCategory(ReportStringId.CatBehavior)]
[DefaultValue(ImagesEmbeddingMode.Url)]
public ImagesEmbeddingMode ImagesEmbeddingMode { get; set; }

Property Value

Type Default Description
ImagesEmbeddingMode **Url**

An ImagesEmbeddingMode enumeration value.

Available values:

Name Description
Url

External images are requested by the client web browser one-by-one using their corresponding URL’s.

Base64

Inline images are encoded using the “base64” scheme.

Auto

The image embedding mode is determined automatically.

See Also