Return the x offset of the virtual root relative to the root window of the screen of this widget.
(self)
| 1452 | self.tk.call('winfo', 'vrootwidth', self._w)) |
| 1453 | |
| 1454 | def winfo_vrootx(self): |
| 1455 | """Return the x offset of the virtual root relative to the root |
| 1456 | window of the screen of this widget.""" |
| 1457 | return self.tk.getint( |
| 1458 | self.tk.call('winfo', 'vrootx', self._w)) |
| 1459 | |
| 1460 | def winfo_vrooty(self): |
| 1461 | """Return the y offset of the virtual root relative to the root |
no test coverage detected