ImageList_DragEnter (Compact 2013)
3/28/2014
This function locks updates to the specified window during a drag operation and displays the drag image at the specified position within the window.
Syntax
BOOL WINAPI ImageList_DragEnter(
HWND hwndLock,
int x,
int y
);
Parameters
- hwndLock
[in] Handle to the window that owns the drag image.
- x
[in] Specifies the x-coordinate at which to display the drag image. The coordinate is relative to the upper-left corner of the window, not the client area.
- y
[in] Specifies the y-coordinate at which to display the drag image. The coordinate is relative to the upper-left corner of the window, not the client area.
Return Value
Nonzero indicates success. Zero indicates failure.
Remarks
To begin a drag operation, use theImageList_BeginDrag function.
Requirements
Header |
commctrl.h |
Library |
commctrl.lib, |
See Also
Reference
Image List Functions
ImageList_BeginDrag
ImageList_DragLeave