LVN_GETDISPINFO
This message requests a list-view control parent window to provide data needed to display or sort an item. It is sent in the form of a WM_NOTIFY message.
LVN_GETDISPINFO pnmv = (LV_DISPINFO FAR *) lParam;
Parameters
pnmv
Pointer to an LV_DISPINFO structure. On input, the LVITEM structure contained in this structure specifies the type of data required and identifies the item or subitem of interest.Use the LVITEM structure to return the requested data to the control. If your message handler sets the LVIF_DI_SETITEM flag in the mask member of the LVITEM structure, the list-view control stores the requested data and will not ask for it again.
Return Values
None.
Remarks
A list-view control sends the LVN_GETDISPINFO message to retrieve item data stored by the application rather than the control. The data can be text or icon data for an item. It can also be item state data. See the LVM_SETCALLBACKMASK message for more information on implementing item state on a callback basis.
For more information on list-view callbacks, see User Interface Services.
Requirements
OS Versions: Windows CE 1.0 and later.
Header: Commctrl.h.
See Also
LV_DISPINFO | WM_NOTIFY | List-View Controls Messages
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.