|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| commctrl.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
HD_NOTIFY
The HD_NOTIFY structure contains information used to process notification messages from a
header control.
typedef struct _HD_NOTIFY { // hdn
NMHDR hdr;
int iItem;
int iButton;
HD_ITEM FAR* pitem;
} HD_NOTIFY;
Members
hdr
Specifies a NMHDR structure. The code member of this structure identifies the notification message being sent. It
can be one of the following notification codes: HDN_BEGINTRACK, HDN_DIVIDERDBLCLICK, HDN_ENDTRACK, HDN_ITEMCHANGED, HDN_ITEMCHANGING, HDN_ITEMCLICK, or HDN_TRACK.
iItem
Specifies the index of item associated with notification.
iButton
Specifies the index of the mouse button involved in generating the
notification message. This member can be one of these values:
Value
| Meaning
| 0
| Left button
| -
| Right button
| -
| Middle button
|
pitem
Pointer to an HD_ITEM structure that contains information about the header item associated with the
notification message.
Remarks
When a header control sends the HDN_BEGINTRACK, HDN_DIVIDERDBLCLICK,
HDN_ENDTRACK, HDN_ITEMCHANGED, HDN_ITEMCHANGING, HDN_ITEMCLICK, or HDN_TRACK
notification codes, it passes a pointer to an HD_NOTIFY structure as the lParam parameter of a WM_NOTIFY message.
See Also
HD_ITEM, HDN_BEGINTRACK, HDN_DIVIDERDBLCLICK, HDN_ENDTRACK, HDN_ITEMCHANGED, HDN_ITEMCHANGING, HDN_ITEMCLICK, HDN_TRACK, 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 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
|