Class RatingHoverEventArgs
Provides data for the OnItemHover event.
Inheritance
System.Object
RatingHoverEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class RatingHoverEventArgs : Object
Remarks
This class contains information about the rating item that was hovered over by the user, including the element reference and the hover value at the hovered point.
Constructors
RatingHoverEventArgs()
Declaration
public RatingHoverEventArgs()
Properties
Element
Gets the element reference of the rating item that was hovered over.
Declaration
public ElementReference Element { get; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.ElementReference | An Microsoft.AspNetCore.Components.ElementReference representing the DOM element of the hovered rating item. |
Value
Gets or sets the rating value at the point where the user is hovering.
Declaration
public double Value { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the rating value at the hovered position. |