The LVM_GETNEXTITEM message searches for a list view item that has the specified properties and bears the specified relationship to a specified item. You can send this message explicitly or by using the ListView_GetNextItem macro.
LVM_GETNEXTITEM wParam = (WPARAM) (int) iStart; lParam = MAKELPARAM((UINT) flags, 0);
The geometric relation can be one of the following values:
Value |
Meaning |
LVNI_ABOVE |
Searches for an item that is above the specified item. |
LVNI_ALL |
Searches for a subsequent item by index (the default value). |
LVNI_BELOW |
Searches for an item that is below the specified item. |
LVNI_TOLEFT |
Searches for an item to the left of the specified item. |
LVNI_TORIGHT |
Searches for an item to the right of the specified item. |
The state can be zero, or it can be one or more of the following values:
Value |
Meaning |
LVNI_CUT |
The item has the LVIS_CUT state flag set. |
LVNI_DROPHILITED |
The item has the LVIS_DROPHILITED state flag set. |
LVNI_FOCUSED |
The item has the LVIS_FOCUSED state flag set. |
LVNI_SELECTED |
The item has the LVIS_SELECTED state flag set. |
If an item does not have all of the specified state flags set, the search continues with the next item.
Returns the index of the next item if successful or -1 otherwise.
file: /Techref/os/win/api/win32/mess/src/msg12_11.htm, 3KB, , updated: 2000/4/7 11:20, local time: 2024/11/10 13:00,
3.16.82.184:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/mess/src/msg12_11.htm"> LVM_GETNEXTITEM</A> |
Did you find what you needed? |