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

SvgImageBox.HoveredItem Property

Gets the hovered image item.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v19.2.dll

Declaration

[Browsable(false)]
public SvgImageItem HoveredItem { get; }

Property Value

Type Description
SvgImageItem

The hovered item.

Remarks

When the mouse cursor enters an item’s bounds, this item becomes hovered and accessible via the HoveredItem property. You can also test whether the item is hovered with its SvgImageItem.Hovered property.

The SvgImageBox.QueryHoveredItem event allows you to specify a custom item as “hovered” when you move the mouse cursor over items. For instance, you can specify a group as “hovered” when you hover over the group’s item. To allow groups to be hovered and selected, ensure the SvgImageBox.ItemHitTestType property is set to BoundingBox.

See Also