Version

NodeDropped Event

Event is fired when a DataTreeNode is dropped on from the client.
Syntax
'Declaration
 
Public Event NodeDropped As DataTreeNodeDroppedEventHandler
public event DataTreeNodeDroppedEventHandler NodeDropped
Event Data

The event handler receives an argument of type DataTreeNodeDroppedEventArgs containing data related to this event. The following DataTreeNodeDroppedEventArgs properties provide information specific to this event.

PropertyDescription
DestNode Returns the destination DataTreeNode object associated with the event.
DragDropEffect Returns the DragDropEffect value which determines whether the drop was a move or a copy of the source data.
DragDropPoint Returns the DragDropPoint value which determines where within the node the source was dropped.
SourceNodes Returns a list of DataTreeNode objects associated with the event.
SourceTree Returns the WebDataTree object associated with the source of the drag and drop event.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also