Skip to main content

DxSchedulerTimeSpanRange Class

A time interval within a day.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public class DxSchedulerTimeSpanRange :
    IFormattable,
    IEquatable<DxSchedulerTimeSpanRange>

Remarks

The following example uses this class instance to specify the visible time in the View.

<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage">
    <DxSchedulerDayView VisibleTime="@VisibleTime" DayCount="3"></DxSchedulerDayView>
</DxScheduler>

@code {
    // ...
    DxSchedulerTimeSpanRange VisibleTime = new DxSchedulerTimeSpanRange(TimeSpan.FromHours(9), TimeSpan.FromHours(18));
}

Scheduler - A day count for Day view

Inheritance

Object
DxSchedulerTimeSpanRange
See Also