Skip to main content

SchedulerControl.VisibleIntervals Property

Returns the currently visible time cell intervals. This is a dependency property.

Namespace: DevExpress.WinUI.Scheduler

Assembly: DevExpress.WinUI.Scheduler.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(null)]
public DateTimeRangeCollection VisibleIntervals { get; }

Property Value

Type Description
DateTimeRangeCollection

A DevExpress.WinUI.Scheduler.DateTimeRangeCollection object that is the collection of visible time intervals.

Remarks

Use the VisibleIntervals to obtain the datetime ranges currently displayed by the SchedulerControl. Handle the VisibleIntervalsChanged event to perform a necessary action before visible intervals are changed.

The Start property is used as a base for calculating visible intervals when rendering a view, but the actual intervals displayed in the view are available using the VisibleIntervals property.

See Also