Hides the tab specified by tab_id. The tab will not be displayed, but the associated window remains managed by the notebook and its configuration remembered. Hidden tabs may be restored with the add command.
(self, tab_id)
| 831 | |
| 832 | |
| 833 | def hide(self, tab_id): |
| 834 | """Hides the tab specified by tab_id. |
| 835 | |
| 836 | The tab will not be displayed, but the associated window remains |
| 837 | managed by the notebook and its configuration remembered. Hidden |
| 838 | tabs may be restored with the add command.""" |
| 839 | self.tk.call(self._w, "hide", tab_id) |
| 840 | |
| 841 | |
| 842 | def identify(self, x, y): |