Return requested height of this widget.
(self)
| 1321 | self.tk.call('winfo', 'pointery', self._w)) |
| 1322 | |
| 1323 | def winfo_reqheight(self): |
| 1324 | """Return requested height of this widget.""" |
| 1325 | return self.tk.getint( |
| 1326 | self.tk.call('winfo', 'reqheight', self._w)) |
| 1327 | |
| 1328 | def winfo_reqwidth(self): |
| 1329 | """Return requested width of this widget.""" |