The LVM_GETITEMSTATE message retrieves the state of a list view item. You can send this message explicitly or by using the ListView_GetItemState macro.
An item’s state information includes a set of bit flags, as well as image list indexes that indicate the item’s state image and overlay image.
LVM_GETITEMSTATE wParam = (WPARAM) (int) i; lParam = (LPARAM) (UINT) mask;
Value |
Meaning |
LVIS_CUT |
The item is marked for a cut and paste operation. |
LVIS_DROPHILITED |
The item is highlighted as a drag-and-drop target. |
LVIS_FOCUSED |
The item has the focus, so it is surrounded by a standard focus rectangle. Although more than one item may be selected, only one item can have the focus. |
LVIS_SELECTED |
The item is selected. The appearance of a selected item depends on whether it has the focus, and on the system colors used for selection. |
LVIS_OVERLAYMASK |
Use this mask to retrieve the item’s overlay image index. |
LVIS_STATEIMAGEMASK |
Use this mask to retrieve the item’s state image index. |
Returns the current state for the specified item. The only valid bits in the return value are those that correspond to the bits set in the mask parameter.
ListView_GetItemState, LVM_SETITEMSTATE
file: /Techref/os/win/api/win32/mess/src/msg12_9.htm, 3KB, , updated: 2000/4/7 11:20, local time: 2024/11/12 23:58,
3.145.58.48:LOG IN
|
©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_9.htm"> LVM_GETITEMSTATE</A> |
Did you find what you needed? |