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)
| 861 | |
| 862 | |
| 863 | def select(self, tab_id=None): |
| 864 | """Selects the specified tab. |
| 865 | |
| 866 | The associated child window will be displayed, and the |
| 867 | previously-selected window (if different) is unmapped. If tab_id |
| 868 | is omitted, returns the widget name of the currently selected |
| 869 | pane.""" |
| 870 | return self.tk.call(self._w, "select", tab_id) |
| 871 | |
| 872 | |
| 873 | def tab(self, tab_id, option=None, **kw): |
no test coverage detected