Skip to main content
A newer version of this page is available.
All docs
V20.2

AppointmentEditingEventArgs(IList<AppointmentItem>, IList<AppointmentItem>, IList<IList<AppointmentItem>>) Constructor

Initializes a new instance of the AppointmentEditingEventArgs class with the specified settings.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Scheduling, DevExpress.Wpf.Scheduling

Declaration

public AppointmentEditingEventArgs(
    IList<AppointmentItem> sourceAppointments,
    IList<AppointmentItem> editAppointments,
    IList<IList<AppointmentItem>> conflicts
)

Parameters

Name Type Description
sourceAppointments IList<AppointmentItem>

A collection of appointments before the changes the user attempts to apply.

editAppointments IList<AppointmentItem>

A collection of edited appointments.

conflicts IList<IList<AppointmentItem>>

A collection of edited appointments that are conflicting with the current appointments.

Remarks

Instances of the AppointmentEditingEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also