Skip to main content
All docs
V25.1
  • SvgImageBox.HoveredItem Property

    Gets the hovered image item.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.Utils.v25.1.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