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

ASPxClientRatingControl.ItemMouseOut Event

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

Declaration

ItemMouseOut: ASPxClientEvent<ASPxClientRatingControlItemMouseEventHandler<ASPxClientRatingControl>>

Event Data

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

Property Description
index Gets the index of the item related to the event.

Remarks

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

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

See Also