StuBlackett
StuBlackett

Reputation: 3857

Removing the Scrollbar from Horizontal List

I've got an Horizontal List. It contains 6 XML Nodes at the moment. But what I'd like to do is remove the scrollbar so that an button can function to scroll through the nodes instead.

Has anyone achieved this, if so how did you go about it?

Thanks in advance

Upvotes: 0

Views: 455

Answers (1)

JeffryHouser
JeffryHouser

Reputation: 39408

You can usually remove the scroll bar by setting the horizontalScrollPolicy or verticalScrollPolicy to off.

After that, I believe you can scroll the list by setting the verticalScrollPosition or horizontalScrollPosition

Upvotes: 1

Related Questions