maui-devexpress-dot-maui-dot-scheduler-dot-datasource.md
Gets or sets a collection of objects that stores appointment information. This is a bindable property.
Namespace : DevExpress.Maui.Scheduler
Assembly : DevExpress.Maui.Scheduler.dll
NuGet Package : DevExpress.Maui.Scheduler
public object AppointmentsSource { get; set; }
| Type | Description |
|---|---|
| System.Object |
The collection of objects that contain appointment information.
|
Use the AppointmentsSource property to specify a data source for the scheduler’s appointments.
Note
The Scheduler allows you to delete only one item at a time.
Important
Appointment mappings are required. Use the AppointmentMappings property to map appointment properties to data source fields.
This example shows how to bind a DayView instance to a data source that stores custom appointment ( MedicalAppointment ) and label ( MedicalAppointmentType ) objects.
See Also