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

XtraForm.HtmlImages Property

Gets or sets a collection of images to be inserted into the form’s caption using HTML tags. This property is in effect when the Form Title Bar Skinning feature is enabled.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v18.2.dll

Declaration

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

Property Value

Type Default Description
ImageCollection *null*

A ImageCollection object that stores a collection of images.

Remarks

The HTML formatting feature allows you to format the form’s caption using a set of HTML tags. To specify a formatted caption for the form, use the XtraForm.HtmlText property. The image HTML tag can be used to insert an image from an ImageCollection or from the project’s resources into the display text.

If you want to insert an image from an ImageCollection, create a ImageCollection object, add images to it and then assign this ImageCollection to the HtmlImages property. All images in the ImageCollection have names. Use these names to refer to specific images while using the image tag. See HTML Text Formatting to learn more.

Formatting a form’s caption using HTML tags is supported if the Skins feature is enabled.

See Also