MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / select

Method select

PySimpleGUI/PySimpleGUI.py:7482–7491  ·  view source on GitHub ↗

Create a tkinter event that mimics user clicking on a tab. Must have called window.Finalize / Read first!

(self)

Source from the content-addressed store, hash-verified

7480 return element
7481
7482 def select(self):
7483 """
7484 Create a tkinter event that mimics user clicking on a tab. Must have called window.Finalize / Read first!
7485
7486 """
7487 # Use a try in case the window has been destoyed
7488 try:
7489 self.ParentNotebook.select(self.TabID)
7490 except Exception as e:
7491 print('Exception Selecting Tab {}'.format(e))
7492
7493 AddRow = add_row
7494 Layout = layout

Callers 2

read_mailFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected