Create a tkinter event that mimics user clicking on a tab. Must have called window.Finalize / Read first!
(self)
| 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 |
no outgoing calls
no test coverage detected