The LV_KEYDOWN structure contains information about a keyboard event in a list view control.
typedef struct tagLV_KEYDOWN {
NMHDR hdr;
WORD wVKey;
UINT flags;
} LV_KEYDOWN;
Members
hdr
Specifies a NMHDR structure. The code member of this structure identifies the notification message being sent. It can be the LVN_KEYDOWN notification code.
wVKey
Specifies a virtual-key code.
flags
This member is always zero.
Remarks
When a list view control sends the LVN_KEYDOWN notification code, it passes a pointer to an LV_KEYDOWN structure as the lParam parameter of a WM_NOTIFY message.
See Also