WorkflowDesignerMessageFilter.OnGiveFeedback(GiveFeedbackEventArgs) Method

Definition

Occurs during a drag operation.

protected:
 virtual bool OnGiveFeedback(System::Windows::Forms::GiveFeedbackEventArgs ^ eventArgs);
protected virtual bool OnGiveFeedback (System.Windows.Forms.GiveFeedbackEventArgs eventArgs);
abstract member OnGiveFeedback : System.Windows.Forms.GiveFeedbackEventArgs -> bool
override this.OnGiveFeedback : System.Windows.Forms.GiveFeedbackEventArgs -> bool
Protected Overridable Function OnGiveFeedback (eventArgs As GiveFeedbackEventArgs) As Boolean

Parameters

eventArgs
GiveFeedbackEventArgs

A GiveFeedbackEventArgs that contains information about the event.

Returns

true if the message is handled; otherwise, false.

Examples

The following code example shows how to override the OnGiveFeedback method so that it always returns true.

This code example is part of the Basic Designer Hosting SDK Sample from the DesignerShell.cs file. For more information, see Basic Designer Hosting.

protected override bool OnGiveFeedback(GiveFeedbackEventArgs gfbevent)
{
    return true;
}
Protected Overrides Function OnGiveFeedback(ByVal gfbevent As GiveFeedbackEventArgs) As Boolean
    Return True
End Function

Remarks

OnGiveFeedback occurs when a drag operation is started. OnGiveFeedback allows the source of a drag operation to modify the appearance of the mouse pointer to give you visual feedback during a drag operation.

Applies to