SchedulerControl.AppointmentDragStarting Event
In This Article
Occurs when the user starts dragging the selected appointment(s).
Namespace: DevExpress.WinUI.Scheduler
Assembly: DevExpress.WinUI.Scheduler.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
public event EventHandler<AppointmentDragStartingEventArgs> AppointmentDragStarting
#Event Data
The AppointmentDragStarting event's data class is AppointmentDragStartingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Allowed |
Specifies the operations the user is allowed to perform. |
Cancel | Specifies whether to cancel the drag-drop operation. |
Dragging |
Returns the collection of appointments the user is dragging.
Inherited from Appointment |
Drag |
Returns the visual representation of appointments the user is dragging. |
Handled |
Inherited from Scheduler |
Source |
Returns the collection of appointments before the changes the user attempts to apply.
Inherited from Appointment |
#Remarks
The AppointmentDragStarting event raises the SerializeAppointments event. Handle the SerializeAppointments event to create a Windows.ApplicationModel.DataTransfer.DataPackage object that contains appointment data. See the DataPackage topic in MSDN for more information.
See Also