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

AppointmentConflictEventArgs(Appointment, Appointment, AppointmentBaseCollection) Constructor

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

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.Core.dll

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