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!

ListView.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 an item 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
Event handler to install for this event.

See Also

ListView Class | ListView Members | System.WinForms Namespace