Skip to main content
All docs
V23.2

HtmlContentControl.HtmlImages Property

Gets or sets the source of images to display using <img> tags.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(null)]
[DXCategory("Appearance")]
public object HtmlImages { get; set; }

Property Value

Type Default Description
Object null

A source of images.

Remarks

The <img> tag allows you to display an image from the HtmlImages collection and a bound data object (HtmlContentControl.DataContext).

Do the following to display an image from the HtmlImages collection:

<img src="photo1" class="avatar">

See the following topic for more information: HTML Tags - ‘img’ Tag.

See Also