NOTIFYSCROLL: Difference between revisions
Appearance
Created page with "Structure that contains information about scrolling a container control window. This structure is used in the CN_SCROLL container notification code only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _NOTIFYSCROLL { HWND hwndCnr; →Container control handle.: LONG lScrollInc; →Scroll amount.: ULONG fScroll; →Scroll flags.: } NOTIFYSCROLL; typedef NOTIFYSCROLL * PNOTIFYSCROLL..." |
(No difference)
|
Latest revision as of 00:35, 21 April 2025
Structure that contains information about scrolling a container control window. This structure is used in the CN_SCROLL container notification code only.
Type
struct
C Declaration Method
typedef
Example Code
typedef struct _NOTIFYSCROLL { HWND hwndCnr; /* Container control handle. */ LONG lScrollInc; /* Scroll amount. */ ULONG fScroll; /* Scroll flags. */ } NOTIFYSCROLL; typedef NOTIFYSCROLL * PNOTIFYSCROLL ;