WorkflowDesignerMessageFilter.OnDragLeave Method

Definition

Occurs when the mouse pointer leaves the bounds of an object during a drag operation.

protected:
 virtual bool OnDragLeave();
protected virtual bool OnDragLeave ();
abstract member OnDragLeave : unit -> bool
override this.OnDragLeave : unit -> bool
Protected Overridable Function OnDragLeave () As Boolean

Returns

true if the message is handled; otherwise, false.

Examples

The following code example shows how to override the OnDragLeave 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 OnDragLeave()
{
    return true;
}
Protected Overrides Function OnDragLeave() As Boolean
    Return True
End Function

Remarks

OnDragLeave occurs when the mouse pointer leaves the bounds of an object during a drag operation.

Applies to