Query or set the state of this widget as one of normal, icon, iconic (see wm_iconwindow), withdrawn, or zoomed (Windows only).
(self, newstate=None)
| 2480 | sizefrom = wm_sizefrom |
| 2481 | |
| 2482 | def wm_state(self, newstate=None): |
| 2483 | """Query or set the state of this widget as one of normal, icon, |
| 2484 | iconic (see wm_iconwindow), withdrawn, or zoomed (Windows only).""" |
| 2485 | return self.tk.call('wm', 'state', self._w, newstate) |
| 2486 | |
| 2487 | state = wm_state |
| 2488 |
no test coverage detected