Return the y coordinate of the pointer on the root window.
(self)
| 1316 | self.tk.call('winfo', 'pointerxy', self._w)) |
| 1317 | |
| 1318 | def winfo_pointery(self): |
| 1319 | """Return the y coordinate of the pointer on the root window.""" |
| 1320 | return self.tk.getint( |
| 1321 | self.tk.call('winfo', 'pointery', self._w)) |
| 1322 | |
| 1323 | def winfo_reqheight(self): |
| 1324 | """Return requested height of this widget.""" |