Skip to main content
All docs
V25.1
  • AppointmentRestoringEventArgs.ConflictedAppointments Property

    Returns the collection of appointments to be restored that are conflicting with the current appointments.

    Namespace: DevExpress.Xpf.Scheduling

    Assembly: DevExpress.Xpf.Scheduling.v25.1.dll

    NuGet Package: DevExpress.Wpf.Scheduling

    Declaration

    public IReadOnlyList<IList<AppointmentItem>> ConflictedAppointments { get; }

    Property Value

    Type Description
    IReadOnlyList<IList<AppointmentItem>>

    A collection of DevExpress.Xpf.Scheduling.AppointmentItem objects.

    Remarks

    The SchedulerControl.AllowAppointmentConflicts property manages whether the time interval of two or more appointments can intersect. The SchedulerControl.CustomAllowAppointmentConflicts event allows you to define a custom conflict rule.

    See Also