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

MenuSettingsBase.EnableHotTrack Property

Gets or sets a value that specifies whether menu items can visually respond to mouse hovering.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public bool EnableHotTrack { get; set; }

Property Value

Type Description
Boolean

true if the menu’s items can be hot-tracked; otherwise, false.

Remarks

If a menu’s MenuSettingsBase.ItemLinkMode property is set to the ItemLinkMode.ContentBounds, the items of the menu can respond to mouse movement, changing their appearance when the mouse pointer is being moved over them. Use the EnableHotTrack property to control the availability of the hot-tracked state for the menu items when the mouse pointer hovers over them.

The style used to represent the hot-tracked state is specified via the MenuStyle.HoverStyle property, which is available via the MenuSettingsBase.ControlStyle.HoverStyle property of a menu or item’s MenuStyles.Item, MenuStyles.SubMenuItem, and MenuStyles.SubMenuItem properties.

See Also