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

ASPxClientMenuBase.ItemMouseOut Event

Occurs on the client side when the mouse cursor moves outside a menu item.

Declaration

ItemMouseOut: ASPxClientEvent<ASPxClientMenuItemMouseEventHandler<ASPxClientMenuBase>>

Event Data

The ItemMouseOut event's data class is ASPxClientMenuItemMouseEventArgs. The following properties provide information specific to this event:

Property Description
htmlElement Gets the HTML object that contains the processed item.
item Gets the menu item object related to the event. Inherited from ASPxClientMenuItemEventArgs.

Remarks

When an end-user moves the mouse cursor into a menu item, the ASPxClientMenuBase.ItemMouseOver event occurs. It is followed by the ItemMouseOut event which occurs when the user moves the mouse pointer out of the menu item.

Write a ItemMouseOut event handler to perform specific actions on the client side each time the mouse cursor is moved off a menu item. You can use the event parameter’s ASPxClientMenuItemEventArgs.item property to identify the corresponding menu item.

See Also