scrollBy method
Causes the window to scroll relative to the current scrolled position by the specified x- and y-pixel offset.
Syntax
HRESULT retVal = object.scrollBy(x, y);
Parameters
x [in]
Type: longlong that specifies the horizontal scroll offset, in pixels. Positive values scroll the window right, and negative values scroll it left.
y [in]
Type: longlong that specifies the vertical scroll offset, in pixels. Positive values scroll the window down, and negative values scroll it up.
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Standards information
There are no standards that apply here.