int,PyRECT = ScrollWindowEx(hWnd, dx
, dy
, rcScroll
, rcClip
, hrgnUpdate
, flags
)
scrolls the content of the specified window's client area.
Parameters
hWnd : int
handle to window to scrolldx : int
Amount of horizontal scrolling, in device unitsdy : int
Amount of vertical scrolling, in device unitsrcScroll : PyRECT
Scroll rectangle, can be None for entire client arearcClip : PyRECT
Clipping rectangle, can be NonehrgnUpdate : PyGdiHandle
Handle to region which will be updated with area invalidated by scroll operation, can be Noneflags : int
Scrolling flags, combination of SW_ERASE,SW_INVALIDATE,SW_SCROLLCHILDREN,SW_SMOOTHSCROLL.
If SW_SMOOTHSCROLL is specified, use upper 16 bits to specify time in milliseconds.Return Value
Returns the type of region invalidated by scrolling, and a rectangle defining the affected area.