Skip to main content
All docs
V24.2

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

DirectXFormBase.HtmlImages Property

Gets or sets the collection of images that elements of an HTML template can use.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#Declaration

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

#Property Value

Type Default Description
Object null

The collection of images used by HTML template elements.

#Remarks

The markup below creates a block with the vector “newtablestyle” image. This image is stored inside an SvgImageCollection assigned to the HtmlImages properties.

HTML
<div>
    <img src="newtablestyle"/>
</div>
See Also