Return y coordinate of upper left corner of this widget on the root window.
(self)
| 1324 | self.tk.call('winfo', 'rootx', self._w)) |
| 1325 | |
| 1326 | def winfo_rooty(self): |
| 1327 | """Return y coordinate of upper left corner of this widget on the |
| 1328 | root window.""" |
| 1329 | return self.tk.getint( |
| 1330 | self.tk.call('winfo', 'rooty', self._w)) |
| 1331 | |
| 1332 | def winfo_screen(self): |
| 1333 | """Return the screen name of this widget.""" |
no test coverage detected