ImageList_SetDragCursorImage.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

ImageList_SetDragCursorImage (COMCTL32.@)

SYNOPSIS

BOOL ImageList_SetDragCursorImage
 (
  HIMAGELIST himlDrag,
  INT        iDrag,
  INT        dxHotspot,
  INT        dyHotspot
 )

DESCRIPTION

Combines the specified image with the current drag image.

PARAMS

himlDrag [In] handle to drag image list.

iDrag [In] drag image index.

dxHotspot [In] X position of the hot spot.

dyHotspot [In] Y position of the hot spot.

RETURNS

Success: TRUE

Failure: FALSE.

NOTES

- The names dxHotspot, dyHotspot are misleading because they have nothing to do with a hotspot but are only the offset of the origin of the new image relative to the origin of the old image.

- When this function is called and the drag image is visible, a short flickering occurs but this matches the Win9x behavior. It is possible to fix the flickering using code like in ImageList_DragMove.

IMPLEMENTATION

Defined in "commctrl.h".

Implemented in "dlls/comctl32/imagelist.c".

Debug channel "imagelist".