Adds a new tab to the notebook. If window is currently managed by the notebook but hidden, it is restored to its previous position.
(self, child, **kw)
| 817 | |
| 818 | |
| 819 | def add(self, child, **kw): |
| 820 | """Adds a new tab to the notebook. |
| 821 | |
| 822 | If window is currently managed by the notebook but hidden, it is |
| 823 | restored to its previous position.""" |
| 824 | self.tk.call(self._w, "add", child, *(_format_optdict(kw))) |
| 825 | |
| 826 | |
| 827 | def forget(self, tab_id): |
no test coverage detected