Return the number of pixels of the height of the screen of this widget in pixel.
(self)
| 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 |
no test coverage detected