Contents Index Topic Contents | ||
Previous Topic: NMRBAUTOSIZE Next Topic: NMREBARCHILDSIZE |
NMREBAR
typedef struct tagNMREBAR { NMHDR hdr; DWORD dwMask; UINT uBand; UINT fStyle; UINT wID; LPARAM lParam; } NMREBAR, *LPNMREBAR;Contains information used in handling various rebar notification messages.
- hdr
- NMHDR structure that contains additional information about the notification message.
- dwMask
- Set of flags that define which members of this structure contain valid information. This can be one or more of the following values:
RBNM_ID The wID member contains valid information. RBNM_LPARAM The lParam member contains valid information. RBNM_STYLE The fStyle member contains valid information. - uBand
- Zero-based index of the band affected by the notification. This will be -1 if no band is affected.
- fStyle
- The style of the band. This is one or more of the RBBS_ styles detailed in the fStyle member of the REBARBANDINFO structure. This member is only valid if dwMask contains RBNM_STYLE.
- wID
- Application-defined identifier of the band. This member is only valid if dwMask contains RBNM_ID.
- lParam
- Application-defined 32-bit value associated with the band. This member is only valid if dwMask contains RBNM_LPARAM.
Version 4.71
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.