This function locks updates to the specified window during a drag operation and displays the drag image at the specified position within the window.
At a Glance
Header file: | Commctrl.h |
Windows CE versions: | 1.0 and later |
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 Values
Nonzero indicates success. Zero indicates failure.
Remarks
To begin a drag operation, use the ImageList_BeginDrag function.
See Also