Supplies information about a AppointmentMouseEnter or AppointmentMouseLeave event that is being raised.
Object
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
public class SchedulerAppointmentMouseEventArgs<TItem>| Name | Description |
|---|---|
| TItem | The type of the data item. |
Supplies information about a AppointmentMouseEnter or AppointmentMouseLeave event that is being raised.
public SchedulerAppointmentMouseEventArgs<TItem>()The horizontal position (X) of the mouse pointer in viewport coordinates.
public double ClientX { get; set; }
| Type | Description |
|---|---|
| double | The horizontal position (X) of the mouse pointer in viewport coordinates. |
The vertical position (Y) of the mouse pointer in viewport coordinates.
public double ClientY { get; set; }
| Type | Description |
|---|---|
| double | The vertical position (Y) of the mouse pointer in viewport coordinates. |
The data item for which the appointment is created.
public TItem Data { get; set; }
| Type | Description |
|---|---|
| TItem | The data item for which the appointment is created. |
A reference to the DOM element of the appointment that triggered the event.
public ElementReference Element { get; set; }
| Type | Description |
|---|---|
| ElementReference | A reference to the DOM element of the appointment that triggered the event. |