Inserts a pane at the specified position. pos is either the string end, an integer index, or the name of a managed child. If child is already managed by the notebook, moves it to the specified position.
(self, pos, child, **kw)
| 842 | |
| 843 | |
| 844 | def insert(self, pos, child, **kw): |
| 845 | """Inserts a pane at the specified position. |
| 846 | |
| 847 | pos is either the string end, an integer index, or the name of |
| 848 | a managed child. If child is already managed by the notebook, |
| 849 | moves it to the specified position.""" |
| 850 | self.tk.call(self._w, "insert", pos, child, *(_format_optdict(kw))) |
| 851 | |
| 852 | |
| 853 | def select(self, tab_id=None): |
nothing calls this directly
no test coverage detected