Skip to main content

AppointmentStorage.Mappings Property

Contains information on mappings of standard appointment properties to specific fields in a datasource.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public AppointmentMapping Mappings { get; set; }

Property Value

Type Description
AppointmentMapping

An AppointmentMapping object, providing information on the mappings of the appointment properties to the appropriate data fields.

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.

Use the Mappings property to bind the Appointment properties to the appropriate fields in the datasource, specified via the DataSource property of the current AppointmentStorage.

If the properties provided by the AppointmentMapping object are not enough, and you need to display more information for appointments, you should use the AppointmentStorage.CustomFieldMappings property to map these custom properties to the appropriate fields in a datasource.

To get step-by-step instructions on how to specify mappings of appointment properties to data fields, refer to Lesson 5 - Bind a Scheduler to Entity Framework Data Source (legacy).

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