Selects the specified tab. The associated child window will be displayed, and the previously-selected window (if different) is unmapped. If tab_id is omitted, returns the widget name of the currently selected pane.
(self, tab_id=None)
| 851 | |
| 852 | |
| 853 | def select(self, tab_id=None): |
| 854 | """Selects the specified tab. |
| 855 | |
| 856 | The associated child window will be displayed, and the |
| 857 | previously-selected window (if different) is unmapped. If tab_id |
| 858 | is omitted, returns the widget name of the currently selected |
| 859 | pane.""" |
| 860 | return self.tk.call(self._w, "select", tab_id) |
| 861 | |
| 862 | |
| 863 | def tab(self, tab_id, option=None, **kw): |