Returns the key for the currently active tab in this TabGroup :return: Returns the key or None of no key found :rtype: key | None
(self)
| 7706 | |
| 7707 | |
| 7708 | def find_currently_active_tab_key(self): |
| 7709 | """ |
| 7710 | Returns the key for the currently active tab in this TabGroup |
| 7711 | :return: Returns the key or None of no key found |
| 7712 | :rtype: key | None |
| 7713 | """ |
| 7714 | try: |
| 7715 | current_index = self.TKNotebook.index('current') |
| 7716 | key = self.tab_index_to_key.get(current_index, None) |
| 7717 | except: |
| 7718 | key = None |
| 7719 | |
| 7720 | return key |
| 7721 | |
| 7722 | def get(self): |
| 7723 | """ |
no test coverage detected