Return y coordinate of upper left corner of this widget on the root window.
(self)
| 1229 | self.tk.call('winfo', 'rootx', self._w)) |
| 1230 | |
| 1231 | def winfo_rooty(self): |
| 1232 | """Return y coordinate of upper left corner of this widget on the |
| 1233 | root window.""" |
| 1234 | return self.tk.getint( |
| 1235 | self.tk.call('winfo', 'rooty', self._w)) |
| 1236 | |
| 1237 | def winfo_screen(self): |
| 1238 | """Return the screen name of this widget.""" |
no test coverage detected