The SetScrollPos function sets the position of the scroll box (thumb) in the specified scroll bar and, if requested, redraws the scroll bar to reflect the new position of the scroll box.
The SetScrollPos function is provided for backward compatibility. New applications should use the SetScrollInfo function.
int SetScrollPos(
HWND hWnd, |
// handle of window with scroll bar |
int nBar, |
// scroll bar flag |
int nPos, |
// new position of scroll box |
BOOL bRedraw |
// redraw flag |
); |
Value |
Meaning |
SB_CTL |
Sets the position of the scroll box in a scroll bar control. The hWnd parameter must be the handle of the scroll bar control. |
SB_HORZ |
Sets the position of the scroll box in a window’s standard horizontal scroll bar. |
SB_VERT |
Sets the position of the scroll box in a window’s standard vertical scroll bar. |
If the function succeeds, the return value is the previous position of the scroll box.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
If the scroll bar is redrawn by a subsequent call to another function, setting the bRedraw parameter to FALSE is useful.
Because the messages that indicate scroll bar position, WM_HSCROLL and WM_VSCROLL, are limited to 16 bits of position data, applications that rely solely on those messages for position data have a practical maximum value of 65,535 for the SetScrollPos function’s nPos parameter.
However, because the SetScrollInfo, SetScrollPos, SetScrollRange, GetScrollInfo, GetScrollPos, and GetScrollRange functions support 32-bit scroll bar position data, there is a way to circumvent the 16-bit barrier of the WM_HSCROLL and WM_VSCROLL messages. See GetScrollInfo for a description of the technique.
GetScrollInfo, GetScrollPos, GetScrollRange, SetScrollInfo, SetScrollRange
file: /Techref/os/win/api/win32/func/src/f81_10.htm, 5KB, , updated: 2000/4/7 11:19, local time: 2024/11/7 10:39,
18.219.99.29:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://techref.massmind.org/techref/os/win/api/win32/func/src/f81_10.htm"> SetScrollPos</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Welcome to techref.massmind.org! |
.