Skip to main content

SchedulerControl.AppointmentDragEnter Event

Occurs when the user drags back appointments that have been dragged out of the Scheduler or have been deserialized in the DeserializeAppointments event.

Namespace: DevExpress.WinUI.Scheduler

Assembly: DevExpress.WinUI.Scheduler.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public event EventHandler<AppointmentDragEnterEventArgs> AppointmentDragEnter

Event Data

The AppointmentDragEnter event's data class is AppointmentDragEnterEventArgs. The following properties provide information specific to this event:

Property Description
AcceptedOperation Specifies the operations the user is allowed to perform. Inherited from AppointmentDragEventArgsBase.
Cancel Specifies whether to cancel the drag-drop operation. Inherited from AppointmentDragEventArgsBase.
DraggingAppointments Returns the collection of appointments the user is dragging. Inherited from AppointmentDragDropEventArgsBase.
DragUIOverride Returns the visual representation of appointments the user is dragging. Inherited from AppointmentDragEventArgsBase.
Handled Inherited from SchedulerDragEventArgsBase.
SourceAppointments Returns the collection of appointments before the changes the user attempts to apply. Inherited from AppointmentDragDropEventArgsBase.

Remarks

If the drag and drop operation has not been initiated in the Scheduler control, the AppointmentDragEnter event is raised after the DeserializeAppointments event whose Handled parameter is set to true.

See Also