Skip to main content
A newer version of this page is available.
All docs
V19.1

AdditionalAppointmentsDragEventArgs(List<AppointmentDragInfo>, List<AppointmentDragInfo>) Constructor

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

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.Core.dll

Declaration

public AdditionalAppointmentsDragEventArgs(
    List<AppointmentDragInfo> primaryInfos,
    List<AppointmentDragInfo> additionalInfos
)

Parameters

Name Type Description
primaryInfos List<AppointmentDragInfo>

A List<T><AppointmentDragInfo,> collection containing characteristics of the primary dragged appointments.

additionalInfos List<AppointmentDragInfo>

A List<T><AppointmentDragInfo,> collection containing characteristics of the appointments which have been added to the initially dragged appointments in the SchedulerControl.AppointmentDrag event.

See Also