Pushes this window to the bottom of the stack of windows. It is the opposite of BringToFront
(self)
| 11776 | pass |
| 11777 | |
| 11778 | def send_to_back(self): |
| 11779 | """ |
| 11780 | Pushes this window to the bottom of the stack of windows. It is the opposite of BringToFront |
| 11781 | """ |
| 11782 | if not self._is_window_created('tried Window.send_to_back'): |
| 11783 | return |
| 11784 | try: |
| 11785 | self.TKroot.lower() |
| 11786 | except: |
| 11787 | pass |
| 11788 | |
| 11789 | def keep_on_top_set(self): |
| 11790 | """ |
no test coverage detected