Hello
in this code which is in a loop, I wish to test every view.
'lst' is a list containing all the views of the designer
It doesn't work !
How can I test if 'lst.Get(i)' is a customlistview/Scrollview or it's family's type ?
in this code which is in a loop, I wish to test every view.
'lst' is a list containing all the views of the designer
B4X:
For each ...
Dim w As CustomListView=lst.Get(i)
If w.AsView Is ScrollView(or CustomListView) Then
lab=lst.Get(i)
doSomething
End If
...
It doesn't work !
How can I test if 'lst.Get(i)' is a customlistview/Scrollview or it's family's type ?