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)
| 852 | |
| 853 | |
| 854 | def insert(self, pos, child, **kw): |
| 855 | """Inserts a pane at the specified position. |
| 856 | |
| 857 | pos is either the string end, an integer index, or the name of |
| 858 | a managed child. If child is already managed by the notebook, |
| 859 | moves it to the specified position.""" |
| 860 | self.tk.call(self._w, "insert", pos, child, *(_format_optdict(kw))) |
| 861 | |
| 862 | |
| 863 | def select(self, tab_id=None): |