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

Method winfo_height

Lib/tkinter/__init__.py:1246–1249  ·  view source on GitHub ↗

Return height of this widget.

(self)

Source from the content-addressed store, hash-verified

1244 return self.tk.call('winfo', 'geometry', self._w)
1245
1246 def winfo_height(self):
1247 """Return height of this widget."""
1248 return self.tk.getint(
1249 self.tk.call('winfo', 'height', self._w))
1250
1251 def winfo_id(self):
1252 """Return identifier ID for this widget."""

Callers 1

_place_windowFunction · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected