ListView_Scroll (Windows Embedded CE 6.0)
1/6/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 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
Header | commctrl.h |
Windows Embedded CE | Windows CE 1.0 and later |