MCPcopy Index your code
hub / github.com/python/cpython / winfo_reqheight

Method winfo_reqheight

Lib/tkinter/__init__.py:1323–1326  ·  view source on GitHub ↗

Return requested height of this widget.

(self)

Source from the content-addressed store, hash-verified

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."""

Callers 13

_place_windowFunction · 0.80
adjust_labelMethod · 0.80
test_pack_propagateMethod · 0.80
load_dictMethod · 0.80
_configure_interiorMethod · 0.80
__init__Method · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45