Return the height of the virtual root window associated with this widget in pixels. If there is no virtual root window return the height of the screen.
(self)
| 1420 | return int(x, 0) |
| 1421 | |
| 1422 | def winfo_vrootheight(self): |
| 1423 | """Return the height of the virtual root window associated with this |
| 1424 | widget in pixels. If there is no virtual root window return the |
| 1425 | height of the screen.""" |
| 1426 | return self.tk.getint( |
| 1427 | self.tk.call('winfo', 'vrootheight', self._w)) |
| 1428 | |
| 1429 | def winfo_vrootwidth(self): |
| 1430 | """Return the width of the virtual root window associated with this |
no test coverage detected