SchedulerControl.EditAppointments(IEnumerable<AppointmentItem>, IEnumerable<AppointmentItem>, Boolean) Method
Edits the specified appointments.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v24.1.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
public bool EditAppointments(
IEnumerable<AppointmentItem> sourceAppointments,
IEnumerable<AppointmentItem> editAppointments,
bool showConflictsMessageBox = true
)
Parameters
Name | Type | Description |
---|---|---|
sourceAppointments | IEnumerable<AppointmentItem> | The appointments to be edited. |
editAppointments | IEnumerable<AppointmentItem> | The edited appointments to replace the sourceAppointments. |
Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
showConflictsMessageBox | Boolean | True | true, to display the message box that warns about conflicting appointments; otherwise, false. |
Returns
Type | Description |
---|---|
Boolean | true, if the appointments have been edited; otherwise, false. |
Remarks
The method does not apply changes to the sourceAppointments and returns false in either of the following cases:
- The editAppointments collection is empty
- It would lead to conflicts restricted by the AllowAppointmentConflicts property and the CustomAllowAppointmentConflicts event
- The Cancel property of your AppointmentEditing event implementation returns true.
See Also