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!

RichControl.AddOnDragDrop

Adds an event handler for the dragDrop event. The dragDrop evnet occurs when the user releases the mouse button while dragging some Object over the control.

[Visual Basic]
Overridable Public Sub AddOnDragDrop( _
   ByVal handler As DragEventHandler _
)
[C#]
public virtual void AddOnDragDrop(
   DragEventHandler handler
);
[C++]
public: virtual void AddOnDragDrop(
   DragEventHandler* handler
);
[JScript]
public function AddOnDragDrop(
   handler : DragEventHandler
);

Parameters

handler
New handler to install for this event.

See Also

RichControl Class | RichControl Members | System.WinForms Namespace | RemoveOnDragDrop