Class SchedulerTimeViewBase
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public abstract class SchedulerTimeViewBase : SchedulerViewBase, ISchedulerView, IDisposable
Constructors
SchedulerTimeViewBase()
Declaration
protected SchedulerTimeViewBase()
Properties
EndTime
The last hour shown in the view. Defaults to midnight. Should not be set to a value earlier than the StartTime.
Declaration
public DateTime EndTime { get; set; }
Property Value
System.DateTime
|
SlotDivisions
The number of partitions in each major time slot.
Declaration
public int SlotDivisions { get; set; }
Property Value
System.Int32
|
SlotDuration
The length (time span) of a slot in minutes.
Declaration
public int SlotDuration { get; set; }
Property Value
System.Int32
|
StartTime
The first hour that is shown in the view. Defaults to midnight.
Declaration
public DateTime StartTime { get; set; }
Property Value
System.DateTime
|
WorkDayEnd
The hour at which the work day ends - working hours have a different background from the rest of the hours.
Declaration
public DateTime WorkDayEnd { get; set; }
Property Value
System.DateTime
|
WorkDayStart
The hour at which the work day starts - working hours have a different background from the rest of the hours.
Declaration
public DateTime WorkDayStart { get; set; }
Property Value
System.DateTime
|
Methods
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|