Is there documentation which lists the Views that B4XView wraps, and which properties of those Views it exposes?
I am unable to access the Spinner.SelectedItem property via a B4xView, as in the following example:
So am I correct in assuming that a B4XView accesses some Views and their properties, but not all Views? So the above code won't work because a B4XView does not expose/ allow access to a Spinner view's properties?
I am unable to access the Spinner.SelectedItem property via a B4xView, as in the following example:
B4X:
Dim bxvItem As B4XView
bxvItem = pnlPanel 'pnlPanel contains a Spinner View in index position 0
Log(bxvItem.GetView(0).SelectedItem)
So am I correct in assuming that a B4XView accesses some Views and their properties, but not all Views? So the above code won't work because a B4XView does not expose/ allow access to a Spinner view's properties?