windowsforms-devexpress-dot-xtrascheduler-dot-schedulercontrol-666a76f9.md
Gets or sets the first date of the time interval displayed by the scheduler view.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.dll
NuGet Package : DevExpress.Win.Scheduler
[XtraSerializableProperty(999)]
public DateTime Start { get; set; }
<XtraSerializableProperty(999)>
Public Property Start As Date
| Type | Description |
|---|---|
| DateTime |
A DateTime value that is the start date of the scheduler.
|
The Scheduler’s start date is the beginning of the time interval displayed in the SchedulerControl.ActiveView.
Note
Start property.Start property.The following code snippets (auto-collected from DevExpress Examples) contain references to the Start property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-scheduler-range-control-sample-app/CS/SampleSchedulerRangeControl/Form1.cs#L24
InitSkinGallery();
schedulerControl.Start = System.DateTime.Now;
winforms-scheduler-serialize-deserialize-appointments/CS/DXApplication1/SerializationHelper.cs#L37
scheduler.DataStorage.Appointments.Add(objAppointment);
scheduler.Start = DateTime.Today;
}
winforms-scheduler-display-custom-tooltips/CS/Form1.cs#L103
schedulerControl1.Start = baseTime;
}
winforms-scheduler-get-appointment-by-source-object/CS/Form1.cs#L31
if (schedulerStorage1.Appointments.Count > 0)
schedulerControl1.Start = schedulerStorage1.Appointments[0].Start;
}
winforms-scheduler-gantt-view/CS/dxT183299/Form1.cs#L27
InitializeComponent();
schedulerControl.Start = System.DateTime.Now;
schedulerStorage.Resources.ColorSaving = ColorSavingType.Color;
winforms-scheduler-range-control-sample-app/VB/SampleSchedulerRangeControl_VB/Form1.vb#L14
Me.InitSkinGallery()
schedulerControl.Start = DateTime.Now
AddHandler schedulerStorage.AppointmentsChanged, AddressOf schedulerStorage_AppointmentsChanged
winforms-scheduler-serialize-deserialize-appointments/VB/DXApplication1/SerializationHelper.vb#L29
scheduler.DataStorage.Appointments.Add(objAppointment)
scheduler.Start = Date.Today
Next
winforms-scheduler-display-custom-tooltips/VB/Form1.vb#L85
schedulerStorage.Appointments.Add(apt)
schedulerControl1.Start = baseTime
End Sub
winforms-scheduler-get-appointment-by-source-object/VB/Form1.vb#L40
dataGridView1.DataSource = carsDBDataSet.CarScheduling
If schedulerStorage1.Appointments.Count > 0 Then schedulerControl1.Start = schedulerStorage1.Appointments(0).Start
End Sub
winforms-scheduler-bind-sql-server-customize-update-delete-insert-queries/VB/Form1.vb#L38
schedulerStorage.Appointments.DataSource = dataSet.Tables("CarScheduling")
If schedulerStorage.Appointments.Count > 0 Then schedulerControl1.Start = schedulerStorage.Appointments(0).Start
' 4) Define Insert, Update, Delete commands
See Also