Skip to main content

SchedulerControl.SerializeAppointments Event

Allows you to serialize appointment that are being dragged by the user.

Namespace: DevExpress.WinUI.Scheduler

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

NuGet Package: DevExpress.WinUI

Declaration

public event EventHandler<SerializeAppointmentsEventArgs> SerializeAppointments

Event Data

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

Property Description
Appointments Returns the list of appointments that should be serialized.
Data The appointment data.
Handled Inherited from SchedulerDragEventArgsBase.

Remarks

The SerializeAppointments event is raised when the user starts dragging appointments before the AppointmentDragStarting event concludes.

The Appointments event property returns the appointments the user is dragging. Use the Data event property to serialize the appointment data. See the DataPackage topic in MSDN for more information.

See Also