Inserts a pane at the specified positions. pos is either the string end, and integer index, or the name of a child. If child is already managed by the paned window, moves it to the specified position.
(self, pos, child, **kw)
| 938 | |
| 939 | |
| 940 | def insert(self, pos, child, **kw): |
| 941 | """Inserts a pane at the specified positions. |
| 942 | |
| 943 | pos is either the string end, and integer index, or the name |
| 944 | of a child. If child is already managed by the paned window, |
| 945 | moves it to the specified position.""" |
| 946 | self.tk.call(self._w, "insert", pos, child, *(_format_optdict(kw))) |
| 947 | |
| 948 | |
| 949 | def pane(self, pane, option=None, **kw): |
nothing calls this directly
no test coverage detected