Return x coordinate of upper left corner of this widget on the root window.
(self)
| 1223 | self.tk.call('winfo', 'rgb', self._w, color)) |
| 1224 | |
| 1225 | def winfo_rootx(self): |
| 1226 | """Return x coordinate of upper left corner of this widget on the |
| 1227 | root window.""" |
| 1228 | return self.tk.getint( |
| 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 |
no test coverage detected