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

Adds an event handler for the giveFeedback event. The giveFeedback event occurs during a drag operation. This allows the source of a drag event to modify the mouse pointer to give the user visual feedback as to what would happen if they droped.

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

Parameters

handler
New handler to install for this event.

See Also

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