Return requested width of this widget.
(self)
| 1308 | self.tk.call('winfo', 'reqheight', self._w)) |
| 1309 | |
| 1310 | def winfo_reqwidth(self): |
| 1311 | """Return requested width of this widget.""" |
| 1312 | return self.tk.getint( |
| 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.""" |
no test coverage detected