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.v14.2.dll

#Declaration

public AppointmentStorage AppointmentStorage { get; set; }

#Property Value

Type Description
AppointmentStorage

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

#Remarks

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 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 their status (the AppointmentStorage.Statuses), etc.

#Examples

This example demonstrates how to get access to the scheduler storage and modify its properties. For this, the SchedulerControl.Storage property is used.

See Also