Return requested height of this widget.
(self)
| 1303 | self.tk.call('winfo', 'pointery', self._w)) |
| 1304 | |
| 1305 | def winfo_reqheight(self): |
| 1306 | """Return requested height of this widget.""" |
| 1307 | return self.tk.getint( |
| 1308 | self.tk.call('winfo', 'reqheight', self._w)) |
| 1309 | |
| 1310 | def winfo_reqwidth(self): |
| 1311 | """Return requested width of this widget.""" |
no test coverage detected