Skip to main content
A newer version of this page is available. .

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.v19.1.dll

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