Skip to main content

AppointmentConflictsMode Enum

Lists the modes which specify if appointment conflicts are allowed.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v14.2.Core.dll

#Declaration

public enum AppointmentConflictsMode

#Members

Name Description
Allowed

Appointment conflicts are allowed. This means that appointment intervals can intersect for the same resource (or for at least for one of the resources to which they belong, if resources are shared).

Forbidden

Appointment conflicts are forbidden. This means that appointment intervals can't intersect each other for the same resource (or for at least for one of the resources to which they belong, if resources are shared).

Custom

Whether appointment conflicts are resolved or not is determined manually in the SchedulerControl.AllowAppointmentConflicts event handler.

#Passed To

You can pass AppointmentConflictsMode values to the OptionsCustomization.AllowAppointmentConflicts property.

#Remarks

Use the AppointmentConflictsMode enumeration members to specify if time intervals of appointments can intersect or not. These enumeration values are used by the OptionsCustomization.AllowAppointmentConflicts property.

See Also