Skip to main content

LabelControlAppearanceObject.HoverImageIndex Property

OBSOLETE

Use AppearanceHovered instead.

Gets or sets the index of the image to be displayed within the label when the control is hovered over.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[DefaultValue(-1)]
[EditorBrowsable(EditorBrowsableState.Never)]
[ImageList("ImageList")]
[Obsolete("Use AppearanceHovered instead.")]
public int HoverImageIndex { get; set; }

Property Value

Type Default Description
Int32 -1

An integer value that represents a zero-based index of an image in the LabelControlAppearanceObject.ImageList collection.

Remarks

The source of images is specified by the LabelControlAppearanceObject.ImageList property.

To provide an image to be displayed in the hovered over state, you can also use the LabelControlAppearanceObject.HoverImage property. The image assigned to the LabelControlAppearanceObject.HoverImage property has a higher priority than the image referred to by the HoverImageIndex property.

See Also