windowsforms-devexpress-dot-xtrascheduler-dot-schedulerdatastorage-2e3f321e.md
Gets a storage object that contains appointments.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.dll
NuGet Package : DevExpress.Win.Scheduler
public AppointmentDataStorage Appointments { get; }
Public ReadOnly Property Appointments As AppointmentDataStorage
| Type | Description |
|---|---|
| AppointmentDataStorage |
An AppointmentDataStorage object that is the storage for appointments.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Appointments 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-linq-to-sql/CS/XtraScheduler_LINQ/Form1.cs#L23
void InitializeMappings() {
AppointmentDataStorage aptStorage = this.schedulerStorage1.Appointments;
ResourceDataStorage resStorage = this.schedulerStorage1.Resources;
winforms-scheduler-linq-to-sql/VB/XtraScheduler_LINQ/Form1.vb#L26
Private Sub InitializeMappings()
Dim aptStorage As AppointmentDataStorage = schedulerStorage1.Appointments
Dim resStorage As ResourceDataStorage = schedulerStorage1.Resources
See Also