New to Telerik UI for BlazorStart a free 30-day trial

The class that describes the event arguments to the scheduler cell render event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class SchedulerCellRenderEventArgs : EventArgs

Inheritance: objectEventArgsSchedulerCellRenderEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public SchedulerCellRenderEventArgs()

Properties

The class to be applied to the time slot.

C#
public string Class { get; set; }

The slot's end time.

C#
public DateTime End { get; set; }

Indicates if the slot is for the whole day.

C#
public bool IsAllDay { get; set; }

The resources for the respective time slot. Applicable only with grouped resources.

C#
public List<KeyValuePair<string, object>> Resources { get; set; }

The slot's start time.

C#
public DateTime Start { get; set; }