Table of Contents

Class SchedulerAppointmentRenderEventArgs<TItem>

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Supplies information about a AppointmentRender event that is being raised.

public class SchedulerAppointmentRenderEventArgs<TItem>

Type Parameters

TItem

The type of the data item.

Inheritance
SchedulerAppointmentRenderEventArgs<TItem>
Inherited Members

Constructors

SchedulerAppointmentRenderEventArgs()

public SchedulerAppointmentRenderEventArgs()

Properties

Attributes

HTML attributes to apply to the appointment element.

public IDictionary<string, object> Attributes { get; set; }

Property Value

IDictionary<string, object>

Data

The data item for which the appointment is created.

public TItem Data { get; set; }

Property Value

TItem

The data.

End

The end date of the appointment.

public DateTime End { get; set; }

Property Value

DateTime

Start

The start date of the appointment.

public DateTime Start { get; set; }

Property Value

DateTime