Hello, I want to disable both scroll and clicks on the elements in the scrollview but scrollview.enabled = false or scrollview.panel.enabled = false doesn't work.
Hello, You can disable each view in your scrollview
Dim vView As View
For i = 0 To scv_ScrollView.Panel.NumberOfViews -1
vView = scv_ScrollView.Panel.GetView(i)
If bDesactiver = True Then
vView.Enabled = False
Else
vView.Enabled = True
End If
Next