maui-devexpress-dot-maui-dot-scheduler-dot-datasource-5fc57b21.md
Gets or sets an object that specifies how appointment properties are mapped to the data source fields. This is a bindable property.
Namespace : DevExpress.Maui.Scheduler
Assembly : DevExpress.Maui.Scheduler.dll
NuGet Package : DevExpress.Maui.Scheduler
public AppointmentMappings AppointmentMappings { get; set; }
| Type | Description |
|---|---|
| AppointmentMappings |
The object that contains mappings of the appointment properties to the data source fields.
|
When you bind a scheduler view to an external data source of appointments (DataSource.AppointmentsSource), use the AppointmentMappings property to define which data source fields should serve as sources of data for properties of the scheduler’s appointment.
This example shows how to bind a DayView instance to a data source that stores custom appointment ( MedicalAppointment ) and label ( MedicalAppointmentType ) objects.
See Also