Class SchedulerCellRenderEventArgs
The class that describes the event arguments to the scheduler cell render event.
Inheritance
System.Object
SchedulerCellRenderEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class SchedulerCellRenderEventArgs : EventArgs
Constructors
SchedulerCellRenderEventArgs()
Declaration
public SchedulerCellRenderEventArgs()
Properties
Class
The class to be applied to the time slot.
Declaration
public string Class { get; set; }
Property Value
System.String
|
End
The slot's end time.
Declaration
public DateTime End { get; set; }
Property Value
System.DateTime
|
IsAllDay
Indicates if the slot is for the whole day.
Declaration
public bool IsAllDay { get; set; }
Property Value
System.Boolean
|
Resources
The resources for the respective time slot. Applicable only with grouped resources.
Declaration
public List<KeyValuePair<string, object>> Resources { get; set; }
Property Value
System.Collections.Generic.List<System.Collections.Generic.KeyValuePair<System.String, System.Object>>
|
Start
The slot's start time.
Declaration
public DateTime Start { get; set; }
Property Value
System.DateTime
|