Skip to main content

SchedulerStorage.AppointmentStorage Property

Provides access to a storage that contains information on appointments.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public AppointmentStorage AppointmentStorage { get; set; }

Property Value

Type Description
AppointmentStorage

An AppointmentStorage object that specifies the storage for appointment related information.

Remarks

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

The AppointmentStorage property provides access to the AppointmentStorage object which specifies the storage for appointment related information. Using the members of this object, you can, for example, specify the datasource that contains appointments (the PersistentObjectStorage<T>.DataSource property), access an object that allows the persistent properties of appointments to be mapped to the corresponding data fields (the AppointmentStorage.Mappings property), collections of appointment labels (the AppointmentStorage.Labels property) and statuses (the AppointmentStorage.Statuses), etc.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AppointmentStorage 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.

See Also