Skip to main content

SchedulerControl.EditAppointments(IEnumerable<AppointmentItem>, IEnumerable<AppointmentItem>, Boolean) Method

Edits the specified appointments.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v23.2.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:

See Also