Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SvgImageBox.HoveredItem Property

Gets the hovered image item.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#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