NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TreeView.AddOnItemDrag

Adds an event handler for the "itemDrag" event notification The itemDrag event is fired when the user presses the left or right mouse button over a node and begins to move the mouse. A typical response to this event would be to call doDragDrop.

[Visual Basic]
Public Sub AddOnItemDrag( _
   ByVal handler As ItemDragEventHandler _
)
[C#]
public void AddOnItemDrag(
   ItemDragEventHandler handler
);
[C++]
public: void AddOnItemDrag(
   ItemDragEventHandler* handler
);
[JScript]
public function AddOnItemDrag(
   handler : ItemDragEventHandler
);

Parameters

handler
The event handler to install.

See Also

TreeView Class | TreeView Members | System.WinForms Namespace