Return requested width of this widget.
(self)
| 1326 | self.tk.call('winfo', 'reqheight', self._w)) |
| 1327 | |
| 1328 | def winfo_reqwidth(self): |
| 1329 | """Return requested width of this widget.""" |
| 1330 | return self.tk.getint( |
| 1331 | self.tk.call('winfo', 'reqwidth', self._w)) |
| 1332 | |
| 1333 | def winfo_rgb(self, color): |
| 1334 | """Return a tuple of integer RGB values in range(65536) for color in this widget.""" |