tkinter.ttk.Notebook.forget()

forget(tab_id) Removes the tab specified by tab_id, unmaps and unmanages the associated window.

tkinter.ttk.Notebook.identify()

identify(x, y) Returns the name of the tab element at position x, y, or the empty string if none.

tkinter.ttk.Notebook.hide()

hide(tab_id) 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.

tkinter.ttk.Notebook.select()

select(tab_id=None) Selects the specified tab_id. 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.

tkinter.ttk.Notebook.index()

index(tab_id) Returns the numeric index of the tab specified by tab_id, or the total number of tabs if tab_id is the string “end”.

tkinter.ttk.Combobox.set()

set(value) Sets the value of the combobox to value.

tkinter.ttk.Notebook

class tkinter.ttk.Notebook add(child, **kw) Adds a new tab to the notebook. If window is currently managed by the notebook but hidden, it is restored to its previous position. See Tab Options for the list of available options. forget(tab_id) Removes the tab specified by tab_id, unmaps and unmanages the associated window. hide(tab_id) 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

tkinter.ttk.Notebook.enable_traversal()

enable_traversal() Enable keyboard traversal for a toplevel window containing this notebook. This will extend the bindings for the toplevel window containing the notebook as follows: Control-Tab: selects the tab following the currently selected one. Shift-Control-Tab: selects the tab preceding the currently selected one. Alt-K: where K is the mnemonic (underlined) character of any tab, will select that tab. Multiple notebooks in a single toplevel may be enabled for traversal, including

tkinter.ttk.Notebook.add()

add(child, **kw) Adds a new tab to the notebook. If window is currently managed by the notebook but hidden, it is restored to its previous position. See Tab Options for the list of available options.

tkinter.ttk.Combobox.get()

get() Returns the current value of the combobox.