MCPcopy Index your code
hub / github.com/RustPython/RustPython / winfo_reqheight

Method winfo_reqheight

Lib/tkinter/__init__.py:1305–1308  ·  view source on GitHub ↗

Return requested height of this widget.

(self)

Source from the content-addressed store, hash-verified

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

Callers 2

_place_windowFunction · 0.80
adjust_labelMethod · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected