Search
Calendar.itemPasted Event
See Also
 






Invoked when an item is pasted from the clipboard.

Namespace: MindFusion.Scheduling
File: Calendar.js

 Syntax

JavaScript  Copy Code

calendar.itemPasted.addEventListener(onItemPasted);

function onItemPasted(sender, args)
{
}

 Event Data

The event handler method receives the following arguments:
sender
A Calendar instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
An ItemModifiedEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.

 See Also