WinXScroll_Scroll (hWnd, direction, unitType, scrollingDirection)
Generates a scrolling event
Parameter | Description |
---|---|
hWnd | The handle to the window to scroll |
direction | The scrollbar to scroll, see remarks for more info |
unitType | The type of unit to scroll by, see remarks for more info |
scrollingDirection | The direction to scroll in, -1 to scroll to the upper left, +1 to scroll to the lower right |
$$TRUE on success or $$FALSE on fail
The direction parameter identifies the scrollbar to scroll. Possible values are:
The unitType parameter identifies which kind of unit to scroll by. Possible values are:
'scroll to the top left hand corner WinXScroll_Scroll (#hMain, $$DIR_VERT, $$UNIT_END, -1) WinXScroll_Scroll (#hMain, $$DIR_HORIZ, $$UNIT_END, -1) |