ListView_Scroll
This macro scrolls the content of a list-view control. You can use this macro or send the LVM_SCROLL message explicitly.
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 Values
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 dy parameter 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
OS Versions: Windows CE 1.0 and later.
Header: Commctrl.h.
See Also
LVM_SCROLL | List-View Controls Macros
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.