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

SchedulerControl.VisibleIntervals Property

Provides access to the currently visible time cell intervals. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Scheduler

Assembly: DevExpress.UI.Xaml.Scheduler.v20.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

[NotPublicByDesign]
public DateTimeRangeCollection VisibleIntervals { get; }

Property Value

Type Description
DevExpress.UI.Xaml.Scheduler.DateTimeRangeCollection

A DevExpress.UI.Xaml.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