Return y coordinate of upper left corner of this widget on the root window.
(self)
| 1342 | self.tk.call('winfo', 'rootx', self._w)) |
| 1343 | |
| 1344 | def winfo_rooty(self): |
| 1345 | """Return y coordinate of upper left corner of this widget on the |
| 1346 | root window.""" |
| 1347 | return self.tk.getint( |
| 1348 | self.tk.call('winfo', 'rooty', self._w)) |
| 1349 | |
| 1350 | def winfo_screen(self): |
| 1351 | """Return the screen name of this widget.""" |