SchedulerControl.EditAppointment(AppointmentItem, AppointmentItem, Boolean) Method
Edits the specified appointment.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v25.1.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
public bool EditAppointment(
AppointmentItem sourceApt,
AppointmentItem editApt,
bool showConflictsMessageBox = true
)
Parameters
| Name | Type | Description |
|---|---|---|
| sourceApt | AppointmentItem | The appointment to be edited. |
| editApt | AppointmentItem | The edited appointment to replace the sourceApt. |
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 appointment has been edited; otherwise, false. |
Remarks
The method does not apply changes to the sourceApt and returns false in either of the following cases:
- 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