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)
| 807 | |
| 808 | |
| 809 | def add(self, child, **kw): |
| 810 | """Adds a new tab to the notebook. |
| 811 | |
| 812 | If window is currently managed by the notebook but hidden, it is |
| 813 | restored to its previous position.""" |
| 814 | self.tk.call(self._w, "add", child, *(_format_optdict(kw))) |
| 815 | |
| 816 | |
| 817 | def forget(self, tab_id): |
no test coverage detected