Return a tuple of integer RGB values in range(65536) for color in this widget.
(self, color)
| 1313 | self.tk.call('winfo', 'reqwidth', self._w)) |
| 1314 | |
| 1315 | def winfo_rgb(self, color): |
| 1316 | """Return a tuple of integer RGB values in range(65536) for color in this widget.""" |
| 1317 | return self._getints( |
| 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 |
no test coverage detected