Home > Net >  How to "scroll" a scrollbar in qml?
How to "scroll" a scrollbar in qml?

Time:04-09

I'm new in qml. Does anybody know how to manipulate a scrollbar from qml? I only found this: scrollbar.increase() but I would want to move the scrollbar to the end of its limit in one move e.g. having scrolled to the top I want to move in one moment to the bottom of my page. Thanks in advance.

CodePudding user response:

You can manually scroll anywhere you want by setting the position property, which is in the range of 0.0-1.0. So to scroll to the bottom, simply do this:

position = 1.0;
  • Related