Class HoveredElementChangedEventArgs
Provides data for the HoveredElementChanged event that occurs when the mouse hover state changes for an element.
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class HoveredElementChangedEventArgs : EventArgs
Remarks
HoveredElementChangedEventArgs is used to notify when the mouse cursor enters or leaves a RadElement, providing the element that is currently under the mouse cursor. This is essential for implementing hover effects, tooltips, and other mouse-based interactions.
The event is commonly used in controls that need to track which specific element the user is hovering over, enabling dynamic visual feedback and contextual information.
Constructors
HoveredElementChangedEventArgs(RadElement)
Initializes a new instance of the HoveredElementChangedEventArgs class.
Declaration
public HoveredElementChangedEventArgs(RadElement hoveredElement)
Parameters
RadElement
hoveredElement
The RadElement that is currently being hovered, or null if no element is hovered. |
Fields
HoveredElement
The RadElement that is currently being hovered by the mouse cursor.
Declaration
public readonly RadElement HoveredElement
Field Value
RadElement
|
Remarks
This field contains the element that the mouse is currently hovering over. If the mouse is not over any element, this value may be null.