MCPcopy Index your code
hub / github.com/python/cpython / hide

Method hide

Lib/tkinter/ttk.py:833–839  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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):

Callers 5

DFunction · 0.80
IFunction · 0.80
xrFunction · 0.80
test_tab_identifiersMethod · 0.80
test_add_and_hiddenMethod · 0.80

Calls 1

callMethod · 0.45

Tested by 2

test_tab_identifiersMethod · 0.64
test_add_and_hiddenMethod · 0.64