|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| commctrl.h
| Unicode
| No
| Platform Notes
| None
|
|
|
LV_KEYDOWN
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
LVN_KEYDOWN, WM_NOTIFY
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|