Share via


IDropTarget::DragLeave (Compact 2013)

3/28/2014

This method removes target feedback and releases the data object.

Syntax

HRESULT DragLeave(void);

Parameters

None.

Return Value

This method returns S_OK when it is successful and E_OUTOFMEMORY when it fails.

Remarks

Do not call this method directly. The DoDragDrop function calls this method in either of the following cases:

  • When the user drags the cursor out of a given target window.
  • When the user cancels the current drag-and-drop operation.

To implement IDropTarget::DragLeave, you must remove any target feedback that is currently displayed. You must also release any references you hold to the data transfer object.

Requirements

Header

shobjidl.h,
shobjidl.idl

Library

Developer Implemented

See Also

Reference

IDropTarget