SchedulerControl.Start Property
In This Article
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 |
---|---|
Date |
A Date |
#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).
See Also