ListView_MapIDToIndex

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This macro maps the identifier (ID) of an item to an index. You can use this macro or send the LVM_MAPIDTOINDEX message explicitly.

Syntax

UINT ListView_MapIDToIndex(
   HWND hwnd,
   UINT id
);

Parameters

  • hwnd
    Handle to the list-view control.
  • id
    UINT that contains the unique ID of an item.

Return Value

Returns the most current index.

Remarks

List-view controls internally track items by index. This can present problems because indexes can change during the control's existence.

You can use this macro to tag an item with an ID when you create the item. You use this ID to guarantee uniqueness during the existence of the list-view control.

If you need to know the index of an item after you create an ID, call LVM_MAPIDTOINDEX with the unique ID and it returns the most current index.

Note

In a multithreaded environment, you can only be sure the correct index is returned on the thread that hosts the list-view control, not on background threads.

Requirements

Header commctrl.h
Windows Embedded CE Windows CE 5.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

List-View Controls Macros