Skip to main content
A newer version of this page is available. .

DxSchedulerTimeSpanRange Class

A time interval within a day.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.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));
}

Inheritance

Object
DxSchedulerTimeSpanRange
See Also