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

AppointmentItemConflictEventArgs.Conflicts Property

Gets the collection of appointments which are considered to be conflicting with the current appointment.

Namespace: DevExpress.Xpf.Scheduling

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

Declaration

public IList<AppointmentItem> Conflicts { get; }

Property Value

Type Description
IList<AppointmentItem>

A IList<T><AppointmentItem,> object which contains all appointments conflicting with the current one.

Remarks

The Conflicts property contains all appointments which are considered to be conflicting with the current appointment (the appointment for which this event was raised) by the DXScheduler. Use the AppointmentEventArgs.Appointment property to access the current appointment.

The empty Conflicts collection after the SchedulerControl.CustomAllowAppointmentConflicts event has occurred indicates that there are no conflicts. If there is at least one item in the Conflicts collection, it is considered that there is a conflict, and in this case, the operation cannot be performed by an end-user.

See Also