Wish Cast

astronald

Active Member
Licensed User
Longtime User
I dont know if this is posible
B4x:
((Label) Panel.getview(0)).Text = "My Text"

or

(Panel.getview(0) as Label).Text = "My Text"

Thanks to b4x team
 

mangojack

Expert
Licensed User
Longtime User
I'm unsure why you have posted this in Wish section.

If the Panel has been declared as B4XView then you can just call ..

B4X:
Panel.GetView(0).Text = "My Text"
 
Top