CListCtrl::CreateDragImage
Creates a drag image list for the item specified by nItem.
CImageList* CreateDragImage(
int nItem,
LPPOINT lpPoint
);
Parameters
nItem
Index of the item whose drag image list is to be created.lpPoint
Address of a POINT structure that receives the initial location of the upper-left corner of the image, in view coordinates.
Return Value
A pointer to the drag image list if successful; otherwise NULL.
Remarks
The CImageList object is permanent, and you must delete it when finished. For example:
CImageList* pImageList = m_myListCtrl.CreateDragImage(nItem, &point);
// do something
delete pImageList;
Requirements
Header: afxcmn.h