Return the fractional value which corresponds to a slider position of X,Y.
(self, x, y)
| 3597 | self.tk.call(self._w, 'delta', deltax, deltay)) |
| 3598 | |
| 3599 | def fraction(self, x, y): |
| 3600 | """Return the fractional value which corresponds to a slider |
| 3601 | position of X,Y.""" |
| 3602 | return self.tk.getdouble(self.tk.call(self._w, 'fraction', x, y)) |
| 3603 | |
| 3604 | def identify(self, x, y): |
| 3605 | """Return the element under position X,Y as one of |