Search
Calendar.ItemPasting Event
See Also
 





Raised when an item is about to be pasted from the clipboard.

Namespace: MindFusion.Scheduling.Wpf
Assembly: MindFusion.Scheduling.Wpf

 Syntax

C#  Copy Code

public event EventHandler<ItemConfirmEventArgs> ItemPasting

Visual Basic  Copy Code

Public Event ItemPasting As EventHandler(Of ItemConfirmEventArgs)

 Remarks

This event is raised for each item retrieved from the clipboard before it is officially added to the schedule. It provides a validation point where you can inspect the item's properties, modify its state, or cancel the paste operation for that specific item by setting the Confirm property to false.

 See Also