Return x coordinate of upper left corner of this widget on the root window.
(self)
| 1318 | self.tk.call('winfo', 'rgb', self._w, color)) |
| 1319 | |
| 1320 | def winfo_rootx(self): |
| 1321 | """Return x coordinate of upper left corner of this widget on the |
| 1322 | root window.""" |
| 1323 | return self.tk.getint( |
| 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 |
no test coverage detected