SetScrollRange 函数
我读过 SetScrollRange 但是仍然没有得到滚动条中的范围(最小,最大)。我已将 Rich Edit 控件的垂直滚动条范围设置为 (0, 100)
SetScrollRange(hwndRichEditControl, SB_VERT, 0, 100, TRUE);
现在,如果我尝试 GetScrollPos
来获取位置,我将获得超过最大范围的值。 位置不应该在0到100之间吗?
int Pos = GetScrollPos(hwndRichEditControl, SB_VERT);
I've read about SetScrollRange but still didn't get what the range (min, max) is in scrollbar. I've set the rich edit control's vertical scroll bar range to (0, 100)
SetScrollRange(hwndRichEditControl, SB_VERT, 0, 100, TRUE);
Now, If I try GetScrollPos
to get the position i'm getting the value over max range.
Shouldn't the position be between 0 and 100?
int Pos = GetScrollPos(hwndRichEditControl, SB_VERT);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不应该。 RichEdit控件本身决定了滚动条的滚动范围。它的作用取决于它显示的文本量。如果有的话,覆盖它也不会持续很长时间。您只能使用 GetScrollInfo() 来了解它当前正在使用什么。一旦用户添加文本,这种情况就会改变。
It shouldn't. The RichEdit control itself determines the scroll range of the scroll bar. Which it does depending on how much text it displays. Overriding it isn't going to last long, if at all. You can only use GetScrollInfo() to find out what it is using currently. This is going to change as soon as the user adds text.