Get index of item which is nearest to y coordinate Y.
(self, y)
| 3495 | self.tk.call((self._w, 'insert', index) + elements) |
| 3496 | |
| 3497 | def nearest(self, y): |
| 3498 | """Get index of item which is nearest to y coordinate Y.""" |
| 3499 | return self.tk.getint(self.tk.call( |
| 3500 | self._w, 'nearest', y)) |
| 3501 | |
| 3502 | def scan_mark(self, x, y): |
| 3503 | """Remember the current X, Y coordinates.""" |
no test coverage detected