static void EndDrag( );
Remarks
Call this function to end a drag operation. To begin a drag operation, use the BeginDrag member function.
Example
// The pointer to my image list.
extern CImageList* pmyImageList;
// A pointer to the window in which to drag the image.
extern CWnd* pmyWnd;
// Terminate the drag image (usually called from WM_LBUTTONUP).
pmyImageList->DragLeave(pmyWnd);
pmyImageList->EndDrag();
CImageList Overview | Class Members | Hierarchy Chart
See Also CImageList::BeginDrag, CImageList::Draw, CImageList::DragMove