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

AppointmentConflictsMode Enum

Lists the modes which specify if appointments conflicts are allowed.

Namespace: DevExpress.XtraScheduler

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

NuGet Packages: DevExpress.Scheduler.CoreDesktop, DevExpress.WindowsDesktop.Scheduler.CoreDesktop

Declaration

public enum AppointmentConflictsMode

Members

Name Description
Allowed

Appointments 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

Appointments 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 the conflicts are resolved or not is determined manually in the corresponding event handler.

Related API Members

The following properties accept/return AppointmentConflictsMode values:

Library Related API Members
Cross-Platform Class Library SchedulerOptionsCustomization.AllowAppointmentConflicts
WPF Controls OptionsCustomization.AllowAppointmentConflicts

Remarks

Use this enumeration’s members to specify if the time interval of appointments can intersect or not. This enumeration’s values are used by the SchedulerOptionsCustomization.AllowAppointmentConflicts and SchedulerControl.AllowAppointmentConflicts properties.

See Also