The folowing code :
For Each lbl As View In sv1.Panel
If lbl Is Label Then
brings labels (ok), but brings CheckBoxes too (NOT OK !)
same when trying :
For Each lbl As View In sv1.Panel.GetAllViewsRecursive
If lbl Is Label Then
same when trying :
For Each lbl As Label In sv1.Panel
or :
For Each lbl As Label In sv1.Panel.GetAllViewsRecursive
more info :
- imageViews on that panel are not brought into that loop
- sv is the standard scrollView that comes with b4a 6.3
- sv is added in the Designer
- labels, checkboxes, imageviews are all added in code (Initialize + sv1.Panel.AddView)
Thank you
For Each lbl As View In sv1.Panel
If lbl Is Label Then
brings labels (ok), but brings CheckBoxes too (NOT OK !)
same when trying :
For Each lbl As View In sv1.Panel.GetAllViewsRecursive
If lbl Is Label Then
same when trying :
For Each lbl As Label In sv1.Panel
or :
For Each lbl As Label In sv1.Panel.GetAllViewsRecursive
more info :
- imageViews on that panel are not brought into that loop
- sv is the standard scrollView that comes with b4a 6.3
- sv is added in the Designer
- labels, checkboxes, imageviews are all added in code (Initialize + sv1.Panel.AddView)
Thank you