Skip to main content
All docs
V25.1
  • DirectXFormBase.HtmlImages Property

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

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.Utils.v25.1.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.

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