Contents Index Topic Contents | ||
Previous Topic: NMITEMACTIVATE Next Topic: NMLVCACHEHINT |
NMLISTVIEW
typedef struct tagNMLISTVIEW{ NMHDR hdr; int iItem; int iSubItem; UINT uNewState; UINT uOldState; UINT uChanged; POINT ptAction; LPARAM lParam; } NMLISTVIEW, FAR *LPNMLISTVIEW;Contains information about a list view notification message. This structure is the same as the NM_LISTVIEW structure but has been renamed to fit standard naming conventions.
- hdr
- NMHDR structure that contains information about this notification message.
- iItem
- Identifies the list view item, or -1 if not used.
- iSubItem
- Identifies the subitem, or zero if none.
- uNewState
- New item state. This member is zero for notification messages that do not use it.
- uOldState
- Old item state. This member is zero for notification messages that do not use it.
- uChanged
- Set of flags that indicate the item attributes that have changed. This member is zero for notifications that do not use it. Otherwise, it can have the same values as the mask member of the LVITEM structure.
- ptAction
- POINT structure that indicates the location at which the event occurred. This member is undefined for notification messages that do not use it.
- lParam
- Application-defined 32-bit value of the item. This member is undefined for notification messages that do not use it.
Version 4.70
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.