I have a pane where i add some nodes (buttons,labels,sliders...) at runtime ,and drag them at the position that i want to make a layout.When finished,i want to get all the nodes added and save properties as width,height,top,left,text,etc,etc.I try thi code:
and
but i can't find in node type all properties that i need ,as height or width,etc .There's any way to acces?
B4X:
For i = 0 To pnlViews.NumberOfNodes -1
Dim n As Node
n = pnlViews.GetNode(i)
Log(n.Left & " " & n.Top)
Next
B4X:
For each n as Node in pnlViews.GetAllViewsRecursive
'the same problem,don't find hight,width,etc
Next
but i can't find in node type all properties that i need ,as height or width,etc .There's any way to acces?