LVM_GETITEMRECT
The
LVM_GETITEMRECT message retrieves the bounding rectangle for all or part of an
item in the current view. You can send this message explicitly or by using the ListView_GetItemRect
LVM_GETITEMRECT
wParam = (WPARAM) (int) i;
lParam = (LPARAM) (LPRECT) prc;
Parameters
i
Index of the
list view item.
prc
Pointer to a RECT
Return Values
Returns TRUE
if successful or FALSE otherwise.
Remarks
This
parameter is specified by the left member of the RECT structure
pointed to by prc.
See Also