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)
| 1438 | return int(x, 0) |
| 1439 | |
| 1440 | def winfo_vrootheight(self): |
| 1441 | """Return the height of the virtual root window associated with this |
| 1442 | widget in pixels. If there is no virtual root window return the |
| 1443 | height of the screen.""" |
| 1444 | return self.tk.getint( |
| 1445 | self.tk.call('winfo', 'vrootheight', self._w)) |
| 1446 | |
| 1447 | def winfo_vrootwidth(self): |
| 1448 | """Return the width of the virtual root window associated with this |
no test coverage detected