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

SchedulerControl.Start Property

Gets or sets the SchedulerControl start date. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Scheduler

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public DateTime Start { get; set; }

Property Value

Type Description
DateTime

A System.DateTime value which represents the start date of the SchedulerControl.

Remarks

The Scheduler control’s start date is the date on which the scheduler initially shows its data, according to its ActiveViewIndex.

The Start value is used to calculate the time interval displayed in the view. However, the start of the visible time interval may be different, because each view can have its display restrictions. For example, the Work Week View is unable to display a date that is Sunday, because Sunday is not a working day.

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