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

Method winfo_screenheight

Lib/tkinter/__init__.py:1366–1370  ·  view source on GitHub ↗

Return the number of pixels of the height of the screen of this widget in pixel.

(self)

Source from the content-addressed store, hash-verified

1364 self.tk.call('winfo', 'screendepth', self._w))
1365
1366 def winfo_screenheight(self):
1367 """Return the number of pixels of the height of the screen of this widget
1368 in pixel."""
1369 return self.tk.getint(
1370 self.tk.call('winfo', 'screenheight', self._w))
1371
1372 def winfo_screenmmheight(self):
1373 """Return the number of pixels of the height of the screen of

Callers 3

win_heightMethod · 0.80
_place_windowFunction · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected