LVN_SETDISPINFO notification code

Notifies a list-view control's parent window that it must update the information it maintains for an item. This notification code is sent in the form of a WM_NOTIFY message.

LVN_SETDISPINFO
        
    pdi = (NMLVDISPINFO*) lParam

Parameters

lParam

Pointer to an NMLVDISPINFO structure that specifies information for the changed item. The item member of this structure is an LVITEM structure that contains information about the item that was changed. The pszText member of item contains a valid value, regardless of whether the LVIF_TEXT flag is set in the mask member of this structure.

Return value

No return value.

Remarks

The notification receiver casts lParam to retrieve the NMLVDISPINFO structure. The wParam parameter contains the message code.

Requirements

Requirement Value
Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2003 [desktop apps only]
Header
Commctrl.h
Unicode and ANSI names
LVN_SETDISPINFOW (Unicode) and LVN_SETDISPINFOA (ANSI)

See also

LVN_GETDISPINFO