Home | History | Annotate | Download | only in lib-tk

Lines Matching full:nearest

1047     def nearest(self, y):
1048 return self.tk.call(self._w, 'nearest', y)
1507 def nearest(self, x, y):
1508 return self.tk.call(self._w, 'nearest', x, y)
1816 # edit, entryconfigure, format, geometryinfo, info, index, move, nearest,
1888 def nearest(self, x, y):
1889 "Return coordinate of cell nearest pixel coordinate (x,y)"
1890 return self._getints(self.tk.call(self, 'nearest', x, y))