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

AdditionalAppointmentsDragEventArgs.PrimaryAppointmentInfos Property

Provides access to the properties of the primary dragged appointments.

Namespace: DevExpress.XtraScheduler

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

Declaration

public List<AppointmentDragInfo> PrimaryAppointmentInfos { get; }

Property Value

Type Description
List<AppointmentDragInfo>

A List<AppointmentDragInfo> collection containing properties of the primary dragged appointments.

Remarks

The PrimaryAppointmentInfos property allows you to get access to the appointments which the end-user originally selected for dragging.

Each primary 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 PrimaryAppointmentInfos property.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the PrimaryAppointmentInfos 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