Class TimeSlot
Describes a time slot inside the Scheduler component.
Inheritance
System.Object
TimeSlot
Namespace: Telerik.Blazor.Components.Scheduler
Assembly: Telerik.Blazor.dll
Syntax
public class TimeSlot : Object, ITimeSlot
Constructors
TimeSlot(DateTime, DateTime)
Declaration
public TimeSlot(DateTime start, DateTime end)
Parameters
System.DateTime
start
|
System.DateTime
end
|
TimeSlot(DateTime, DateTime, Boolean)
Declaration
public TimeSlot(DateTime start, DateTime end, bool isAllDay)
Parameters
System.DateTime
start
|
System.DateTime
end
|
System.Boolean
isAllDay
|
Properties
End
The end date of the time slot.
Declaration
public DateTime End { get; set; }
Property Value
System.DateTime
|
IsAllDay
A flag indicating whether the time slot is all day or not.
Declaration
public bool IsAllDay { get; set; }
Property Value
System.Boolean
|
Resources
The list of resource key-values associated with the time slot.
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 start date of the time slot.
Declaration
public DateTime Start { get; set; }
Property Value
System.DateTime
|