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

Method winfo_height

Lib/tkinter/__init__.py:1264–1267  ·  view source on GitHub ↗

Return height of this widget.

(self)

Source from the content-addressed store, hash-verified

1262 return self.tk.call('winfo', 'geometry', self._w)
1263
1264 def winfo_height(self):
1265 """Return height of this widget."""
1266 return self.tk.getint(
1267 self.tk.call('winfo', 'height', self._w))
1268
1269 def winfo_id(self):
1270 """Return identifier ID for this widget."""

Callers 15

adjustScrollsMethod · 0.80
_window_sizeMethod · 0.80
_place_windowFunction · 0.80
test_grid_propagateMethod · 0.80
test_identifyMethod · 0.80
test_virtual_eventMethod · 0.80
test_resizeMethod · 0.80
winconfig_eventMethod · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by 9

test_grid_propagateMethod · 0.64
test_identifyMethod · 0.64
test_virtual_eventMethod · 0.64
test_resizeMethod · 0.64
paintMethod · 0.64