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.AddOnDragOver

Adds an event handler for the dragOver event. The dragOver event occurs whenever the user moves the mouse over the control while draggin some Object.

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

Parameters

handler
New handler to install for this event.

See Also

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