Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This macro scrolls the content of a list-view control. You can use this macro or send the LVM_SCROLL message explicitly.

Syntax

BOOL ListView_Scroll( 
  HWND 
hwnd, 
  int 
dx, 
  int 
dy 
);

Parameters

hwnd

Handle to the list-view control.

dx

Specifies the amount of horizontal scrolling in pixels. If the list-view control is in list view, this value specifies the number of columns to scroll.

dy

Specifies the amount of vertical scrolling in pixels.

Return Value

TRUE indicates success. FALSE indicates failure.

Remarks

When the list-view control is in report view, the control can only be scrolled vertically in whole line increments. Therefore, the dyparameter will be rounded to the nearest number of pixels that form a whole line increment. For example, if the height of a line is 16 pixels and 8 is passed for dy, the list will be scrolled by 16 pixels (1 line). If 7 is passed for dy, the list will be scrolled 0 pixels (0 lines).

Related message:  LVM_SCROLL

Requirements

Header commctrl.h
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also