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.v18.1.Core.dll

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the AppointmentConflictsMode enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also