InsertAt inserts a child panel at the specified position in the tree.
(pos int, child IPanel)
| 74 | |
| 75 | // InsertAt inserts a child panel at the specified position in the tree. |
| 76 | func (t *Tree) InsertAt(pos int, child IPanel) { |
| 77 | |
| 78 | t.List.InsertAt(pos, child) |
| 79 | } |
| 80 | |
| 81 | // Add child panel to the end tree. |
| 82 | func (t *Tree) Add(ichild IPanel) { |
no outgoing calls
no test coverage detected