SetScrollRange 函数

发布于 2024-10-11 20:41:13 字数 426 浏览 4 评论 0原文

我读过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆伤 2024-10-18 20:41:13

不应该。 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文