Back to Devexpress

SchedulerDataStorage.Appointments Property

windowsforms-devexpress-dot-xtrascheduler-dot-schedulerdatastorage-2e3f321e.md

latest2.6 KB
Original Source

SchedulerDataStorage.Appointments Property

Gets a storage object that contains appointments.

Namespace : DevExpress.XtraScheduler

Assembly : DevExpress.XtraScheduler.v25.2.dll

NuGet Package : DevExpress.Win.Scheduler

Declaration

csharp
public AppointmentDataStorage Appointments { get; }
vb
Public ReadOnly Property Appointments As AppointmentDataStorage

Property Value

TypeDescription
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

csharp
void InitializeMappings() {
    AppointmentDataStorage aptStorage = this.schedulerStorage1.Appointments;
    ResourceDataStorage resStorage = this.schedulerStorage1.Resources;

winforms-scheduler-linq-to-sql/VB/XtraScheduler_LINQ/Form1.vb#L26

vb
Private Sub InitializeMappings()
    Dim aptStorage As AppointmentDataStorage = schedulerStorage1.Appointments
    Dim resStorage As ResourceDataStorage = schedulerStorage1.Resources

See Also

SchedulerDataStorage Class

SchedulerDataStorage Members

DevExpress.XtraScheduler Namespace