Return x coordinate of upper left corner of this widget on the root window.
(self)
| 1336 | self.tk.call('winfo', 'rgb', self._w, color)) |
| 1337 | |
| 1338 | def winfo_rootx(self): |
| 1339 | """Return x coordinate of upper left corner of this widget on the |
| 1340 | root window.""" |
| 1341 | return self.tk.getint( |
| 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 |