luke2012 Well-Known Member Licensed User Longtime User Sep 3, 2013 #1 Is it possible to save the position of a panel added as child to a ScrollView? sv.Panel.AddView(pnl...) I need to known the position of the object in order to identify it (for example within a loop)
Is it possible to save the position of a panel added as child to a ScrollView? sv.Panel.AddView(pnl...) I need to known the position of the object in order to identify it (for example within a loop)
Theera Well-Known Member Licensed User Longtime User Sep 3, 2013 #2 Please to see example this post. Perhaps help you. Upvote 0
klaus Expert Licensed User Longtime User Sep 3, 2013 #3 If you have only Panels as direct childs you can find easily the Panels by their index in sv.Panel. Example. Dim pnl As Panel pnl = sv.Panel.GetView(2) returns the third Panel added. Best regards. Upvote 0
If you have only Panels as direct childs you can find easily the Panels by their index in sv.Panel. Example. Dim pnl As Panel pnl = sv.Panel.GetView(2) returns the third Panel added. Best regards.