Share via


TreeView_CreateDragImage

This macro creates a dragging bitmap for the specified item in a tree-view control, creates an image list for the bitmap, and adds the bitmap to the image list. An application can display the image when dragging the item by using the image list functions. You can use this macro or send the TVM_CREATEDRAGIMAGE message explicitly.

HIMAGELIST TreeView_CreateDragImage( 
hwnd, 
hitem );

Parameters

  • hwnd
    Handle to the tree view control.
  • hitem
    Handle to the item that receives the new dragging bitmap.

Return Values

The handle to the image list to which the dragging bitmap was added indicates success. NULL indicates failure.

Remarks

If you create a tree view control without an associated image list, you cannot use the TreeView_CreateDragImage macro to create the image to display during a drag operation. You must implement your own method of creating a drag cursor.

Related message: TVM_CREATEDRAGIMAGE

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 1.0 and later Commctrl.h    

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.