Skip to main content

SchedulerControl.Storage Property

Gets or sets the data storage for the scheduler control.

Namespace: DevExpress.Xpf.Scheduler

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

Declaration

[DefaultValue(null)]
[TypeConverter(typeof(ExpandableObjectConverter))]
public SchedulerStorage Storage { get; set; }
<DefaultValue(Nothing)>
<TypeConverter(GetType(ExpandableObjectConverter))>
Public Property Storage As SchedulerStorage

Property Value

Type Default Description
SchedulerStorage

null

A SchedulerStorage object that specifies the storage for the scheduler.

Remarks

Use the Storage property to get or set the data storage for the SchedulerControl. The data storage is used to provide appointment and resource data for the scheduler.

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