Skip to main content

SchedulerControl.Start Property

Gets or sets the start date of the scheduler control.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

[XtraSerializableProperty(XtraSerializationFlags.DefaultValue)]
public DateTime Start { get; set; }

#Property Value

Type Description
DateTime

A DateTime value that is the start date of the scheduler.

#Remarks

The scheduler's start date is the date on which the scheduler initially shows its data, according to its SchedulerControl.ActiveView.

#Examples

This example demonstrates how to set the start date of the scheduler control via the SchedulerControl.Start property. You can selectively do this, either at design time (via the XAML markup)...


<dxsch:SchedulerControl Name="schedulerControl1" 
                        Start="7/15/2011"/>

...or at runtime (via code in the code-behind file).

schedulerControl1.Start = new System.DateTime(2011, 7, 15);
See Also