Skip to main content

AppointmentItemConflictEventArgs(AppointmentItem, AppointmentItem, IEnumerable<AppointmentItem>) Constructor

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

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public AppointmentItemConflictEventArgs(
    AppointmentItem apt,
    AppointmentItem clone,
    IEnumerable<AppointmentItem> conflicts
)

Parameters

Name Type Description
apt AppointmentItem

An AppointmentItem object that is the source appointment.

clone AppointmentItem

An AppointmentItem object that is the changed appointment.

conflicts IEnumerable<AppointmentItem>

A IEnumerable<T><AppointmentItem,> collection of conflicted appointments.

Remarks

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

See Also