moore_it Well-Known Member Licensed User Longtime User Jul 7, 2025 #1 how to work the splitpane dividerposistions when the splitpane have 3 panes ? this code not work B4X: SplitPane1.DividerPositions = Array As Double(0.33,0.33,0.33) Thanks. Last edited: Jul 7, 2025
how to work the splitpane dividerposistions when the splitpane have 3 panes ? this code not work B4X: SplitPane1.DividerPositions = Array As Double(0.33,0.33,0.33) Thanks.
stevel05 Expert Licensed User Longtime User Jul 7, 2025 #2 That would set them all at the same position. As far as I remember positions are absolute. To space 3 dividers equally try 0.25, 0.5,0.75 Last edited: Jul 9, 2025 Upvote 0
That would set them all at the same position. As far as I remember positions are absolute. To space 3 dividers equally try 0.25, 0.5,0.75
moore_it Well-Known Member Licensed User Longtime User Jul 7, 2025 #3 Thanks stevel05 for reply ,this dividers (0.25,05,0.75) work for the first and second pane but not for third pane. Width of third pane is like first + second width panes. I don't know how work ... Upvote 0
Thanks stevel05 for reply ,this dividers (0.25,05,0.75) work for the first and second pane but not for third pane. Width of third pane is like first + second width panes. I don't know how work ...
moore_it Well-Known Member Licensed User Longtime User Jul 7, 2025 #4 Ok i see the Erel's example and i undestand how to work the splitpane I set the sizelimit for pane 0 and for pane 2 and now work fine. Thanks Upvote 0
Ok i see the Erel's example and i undestand how to work the splitpane I set the sizelimit for pane 0 and for pane 2 and now work fine. Thanks