Skip to main content
All docs
V26.1
  • Bar

    BarManager.HtmlImages Property

    Gets or sets a collection of images that can be inserted into item captions using the image tag.

    Namespace: DevExpress.XtraBars

    Assembly: DevExpress.XtraBars.v26.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

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

    Property Value

    Type Default Description
    Object null

    An image collection (DevExpress.Utils.ImageCollection or DevExpress.Utils.SvgImageCollection).

    Remarks

    Enable the Html text formatting feature (see BarManager.AllowHtmlText and BarItem.AllowHtmlText) to format item captions (BarItem.Caption and BarItem.Description) with HTML-inspired tags.

    When you compose an HTML string, you can use the image tag to insert an image from an image collection and project’s resources into the text.

    To insert an image from an image collection, do the following:

    • Create an image collection (ImageCollection or SvgImageCollection) and populate it with images.
    • Assign the collection to the HtmlImages property.
    • When you use the image tag, address a target image by its name (image names can be obtained from the image collection).
    barManager1.AllowHtmlText = true;
    barManager1.HtmlImages = imageCollection1;
    barButtonItem1.Caption = "Person <image=person>";
    

    See HTML Text Formatting to learn more.

    See Also