11-07-2012 07:47 AM
Hi all,
is there any way to hide the scrollbar in a scrollview?
Regards.
Solved! Go to Solution.
11-07-2012 07:54 AM
01-03-2013 10:59 AM
Hi sgallego84,
Thanks for your question!
There is currently no way to remove the scroll indictors in a scrollview. However, here are two workaround options you can try:
Page {
Container {
layout: AbsoluteLayout {
}
ScrollView {
scrollViewProperties.scrollMode: ScrollMode.Both
layoutProperties: AbsoluteLayoutProperties {
positionY: -20
positionX: 20
}
translationX: -20
preferredWidth: 768 + 20
preferredHeight: 1280 + 20
ImageView {
imageSource: "asset:///images/myimage.png"
preferredHeight: 5000
preferredWidth: 5000
}
}
}
}