Class
TimeSlot

Describes a time slot inside the Scheduler component.

Definition

Namespace:Telerik.Blazor.Components.Scheduler

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TimeSlot

Inheritance: objectTimeSlot

Constructors

TimeSlot(DateTime, DateTime)

Declaration

cs-api-definition
public TimeSlot(DateTime start, DateTime end)

Parameters

start

DateTime

end

DateTime

TimeSlot(DateTime, DateTime, bool)

Declaration

cs-api-definition
public TimeSlot(DateTime start, DateTime end, bool isAllDay)

Parameters

start

DateTime

end

DateTime

isAllDay

bool

Properties

End

The end date of the time slot.

Declaration

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

Property Value

DateTime

IsAllDay

A flag indicating whether the time slot is all day or not.

Declaration

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

Property Value

bool

Resources

The list of resource key-values associated with the time slot.

Declaration

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

Property Value

List<KeyValuePair<string, object>>

Start

The start date of the time slot.

Declaration

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

Property Value

DateTime