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

AdditionalAppointmentsDragEventArgs.AdditionalAppointmentInfos Property

Provides access to the properties of the additional dragged appointments.

Namespace: DevExpress.XtraScheduler

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

Declaration

public List<AppointmentDragInfo> AdditionalAppointmentInfos { get; }

Property Value

Type Description
List<AppointmentDragInfo>

A List<T><AppointmentDragInfo,> collection containing properties of additional dragged appointments.

Remarks

The AdditionalAppointmentInfos property allows you to get access to the additional appointments involved in a drag-and-drop operation and modify them.

Each additional dragged appointment is represented by a pair of the source (the original appointment before drag operation) and edited appointment (the appointment being dragged). The appointment pair composes the AppointmentDragInfo object. A list of AppointmentDragInfo objects is available using the AdditionalAppointmentInfos property.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AdditionalAppointmentInfos property.

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