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 GiveFeedback Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the GiveFeedback event.

[Visual Basic]
Private Sub RichControlName_GiveFeedback( _
   ByVal sender As Object, _
   ByVal e As GiveFeedbackEventArgs _
)
[C#]
private void RichControlName_GiveFeedback(
   object sender,
   GiveFeedbackEventArgs e
);
[C++]
private: void RichControlName_GiveFeedback(
   Object* sender,
   GiveFeedbackEventArgs* e
);
[JScript]
private RichControlName_GiveFeedback(
   sender : Object,
   e : GiveFeedbackEventArgs
);

Parameters

sender
The source of the event.
e
A GiveFeedbackEventArgs that contains the event data. The following GiveFeedbackEventArgs properties provide information specific to this event.
Property Description
Effect
Gets the type of drag-and-drop operation.
UseDefaultCursors
Gets or sets a value indicating whether a default pointer is used.

See Also

RichControl Class | RichControl MembersTopic | System.WinForms Namespace