NMTVKEYDOWN structure (commctrl.h)

Contains information about a keyboard event in a tree-view control. This structure is used with the TVN_KEYDOWN notification code. The structure is identical to the TV_KEYDOWN structure, but it has been renamed to follow current naming conventions.

Syntax

typedef struct tagTVKEYDOWN {
  NMHDR hdr;
  WORD  wVKey;
  UINT  flags;
} NMTVKEYDOWN, *LPNMTVKEYDOWN;

Members

hdr

Type: NMHDR

NMHDR structure that contains information about this notification.

wVKey

Type: WORD

Virtual key code.

flags

Type: UINT

Always zero.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header commctrl.h

See also

WM_NOTIFY