SchedulerControl.AppointmentDropCompleted Event
In This Article
Occurs after completing a drag and drop operation.
Namespace: DevExpress.WinUI.Scheduler
Assembly: DevExpress.WinUI.Scheduler.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
public event EventHandler<AppointmentDropCompletedEventArgs> AppointmentDropCompleted
#Event Data
The AppointmentDropCompleted event's data class is AppointmentDropCompletedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Dragging |
Returns the collection of appointments the user is dragging.
Inherited from Appointment |
Drop |
Indicates the result of the drag-drop operation. |
Handled |
Inherited from Scheduler |
Source |
Returns the collection of appointments before the changes the user attempts to apply.
Inherited from Appointment |
#Remarks
If the AppointmentDropCompleted
event’s Cancel property is set to true, the AppointmentDropCompleted event’s DropResult property returns None.
See Also