Skip to main content

AppointmentConflictEventArgs(Appointment, Appointment, AppointmentBaseCollection) Constructor

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

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.Core.Desktop.dll

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public AppointmentConflictEventArgs(
    Appointment apt,
    Appointment clone,
    AppointmentBaseCollection conflicts
)

Parameters

Name Type Description
apt Appointment

An Appointment object which is the appointment for which an event is raised. This value is assigned to the AppointmentEventArgs.Appointment property.

clone Appointment

An Appointment object which is the appointment’s clone for a new AppointmentConflictEventArgs.Interval. This value is assigned to the AppointmentConflictEventArgs.AppointmentClone property.

conflicts AppointmentBaseCollection

An AppointmentBaseCollection object which is a collection of appointments conflicting with the current AppointmentEventArgs.Appointment. This value is assigned to the AppointmentConflictEventArgs.Conflicts property.

See Also