Supplies information about a AppointmentRender event that is being raised.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class SchedulerAppointmentRenderEventArgs<TItem>| Name | Description |
|---|---|
| TItem | The type of the data item. |
Supplies information about a AppointmentRender event that is being raised.
public SchedulerAppointmentRenderEventArgs<TItem>()HTML attributes to apply to the appointment element.
public IDictionary<string, object> Attributes { get; set; }
| Type | Description |
|---|---|
| IDictionary<string, object> | HTML attributes to apply to the appointment element. |
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. |
The end date of the appointment.
public DateTime End { get; set; }
| Type | Description |
|---|---|
| DateTime | The end date of the appointment. |
The start date of the appointment.
public DateTime Start { get; set; }
| Type | Description |
|---|---|
| DateTime | The start date of the appointment. |