LVM_FINDITEM

This message searches for a list view item with the specified characteristics. You can send this message explicitly or by using the ListView_FindItem macro.

At a Glance

Header file: Commctrl.h
Windows CE versions: 1.0 and later
Related macro: ListView_FindItem

Syntax

LVM_FINDITEM wParam = (WPARAM)(int) iStart;
lParam = (LPARAM)(const LV_FINDINFO FAR *) plvfi;

Parameters

iStart

Index of the item to begin the search with or –1 to start from the beginning. The specified item is itself excluded from the search.

plvfi

Pointer to an LVFINDINFO structure that contains data about what to search for.

Return Values

The index of the item indicates success. –1 indicates failure.

See Also

LV_FINDINFO