Skip to main content

SchedulerControl.CopyingToClipboard Event

Occurs before copied appointments are moved to the clipboard.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public event SchedulerCopyingToClipboardEventHandler CopyingToClipboard

Event Data

The CopyingToClipboard event's data class is DevExpress.Xpf.Scheduling.SchedulerCopyingToClipboardEventArgs.

Remarks

The CopyingToClipboard event occurs on both copy and cut operations. The Appointments event property returns the list of copied appointments. Set the Cancel event property to true to prevent appointments from being moved to the clipboard.

Use the SchedulerControl.AllowAppointmentCopy property to control the end-users’ capability to perform copy and cut actions. You can also override this global behavior by handling the SchedulerControl.CustomAllowAppointmentCopy event.

See Also