Class
TimeSlot

Describes a time slot inside the Scheduler component.

Definition

Namespace:Telerik.Blazor.Components.Scheduler

Assembly:Telerik.Blazor.dll

Syntax:

public class TimeSlot

Inheritance: objectTimeSlot

Constructors

TimeSlot(DateTime, DateTime)

Declaration

public TimeSlot(DateTime start, DateTime end)

Parameters

start

DateTime

end

DateTime

TimeSlot(DateTime, DateTime, bool)

Declaration

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

public DateTime End { get; set; }

Property Value

DateTime

IsAllDay

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

Declaration

public bool IsAllDay { get; set; }

Property Value

bool

Resources

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

Declaration

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

Property Value

List<KeyValuePair<string, object>>

Start

The start date of the time slot.

Declaration

public DateTime Start { get; set; }

Property Value

DateTime