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

Adds an event handler for the dragEnter event. The drawEnter event occurs when the user first moves the mouse over the control while dragging some Object.

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

Parameters

handler
New handler to install for this event.

See Also

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