Class
SchedulerCellRenderEventArgs

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

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class SchedulerCellRenderEventArgs : EventArgs

Inheritance: objectEventArgsSchedulerCellRenderEventArgs

Inherited Members EventArgs.Empty

Constructors

SchedulerCellRenderEventArgs()

Declaration

cs-api-definition
public SchedulerCellRenderEventArgs()

Properties

Class

The class to be applied to the time slot.

Declaration

cs-api-definition
public string Class { get; set; }

Property Value

string

End

The slot's end time.

Declaration

cs-api-definition
public DateTime End { get; set; }

Property Value

DateTime

IsAllDay

Indicates if the slot is for the whole day.

Declaration

cs-api-definition
public bool IsAllDay { get; set; }

Property Value

bool

Resources

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

Declaration

cs-api-definition
public List<KeyValuePair<string, object>> Resources { get; set; }

Property Value

List<KeyValuePair<string, object>>

Start

The slot's start time.

Declaration

cs-api-definition
public DateTime Start { get; set; }

Property Value

DateTime