Skip to main content
A newer version of this page is available.
All docs
V20.2

AppointmentAddingEventArgs(IList<AppointmentItem>, IList<IList<AppointmentItem>>) Constructor

Initializes a new instance of the AppointmentAddingEventArgs class with the specified settings.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Scheduling, DevExpress.Wpf.Scheduling

Declaration

public AppointmentAddingEventArgs(
    IList<AppointmentItem> appointments,
    IList<IList<AppointmentItem>> conflicts
)

Parameters

Name Type Description
appointments IList<AppointmentItem>

A collection of appointments that are about to be added to the scheduler.

conflicts IList<IList<AppointmentItem>>

A collection of appointments to be added that are conflicting with the current appointments.

Remarks

Instances of the AppointmentAddingEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also