WinXRegOnScroll


WinXRegOnScroll (hWnd, FUNCADDR onScroll)

Registers the onScroll callback

Parameter Description
hWnd The handle to the window to register the callback for
FUNCADDR onScroll The address of the onScroll callback function

Returns

$$TRUE on success or $$FALSE on fail

Remarks

The onScroll callback function will be called whenever a scrolling event occurs once this callback is registered.

Examples

'register the onScroll callback
WinXRegOnScroll (#hMain, &onScroll())

Related Links

onScroll (Callback)
Scrolling