Contents Index Topic Contents | ||
Previous Topic: Tree View Control Structures Next Topic: NMTVCUSTOMDRAW |
NMTREEVIEW
typedef struct tagNMTREEVIEW { NMHDR hdr; UINT action; TVITEM itemOld; TVITEM itemNew; POINT ptDrag; } NMTREEVIEW, FAR *LPNMTREEVIEW;Contains information about a tree view notification message. This structure is identical to the NM_TREEVIEW structure, but it has been renamed to follow current naming conventions.
- hdr
- NMHDR structure that contains information about this notification message.
- action
- Notification-specific action flag.
- itemOld
- TVITEM structure that contains information about the old item state. This member is zero for notification messages that do not use it.
- itemNew
- TVITEM structure that contains information about the new item state. This member is zero for notification messages that do not use it.
- ptDrag
- POINT structure that contains the client coordinates of the mouse at the time the event occurred that caused the notification message to be sent.
See also WM_NOTIFY
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.