tkinter.ttk.Notebook.insert()

insert(pos, child, **kw) Inserts a pane at the specified position. pos is either the string “end”, an integer index, or the name of a managed child. If child is already managed by the notebook, moves it to the specified position. See Tab Options for the list of available options.

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.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.forget()

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

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.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.Combobox.set()

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

tkinter.ttk.Combobox.get()

get() Returns the current value of the combobox.