Return the fractional value which corresponds to a slider position of X,Y.
(self, x, y)
| 3726 | self.tk.call(self._w, 'delta', deltax, deltay)) |
| 3727 | |
| 3728 | def fraction(self, x, y): |
| 3729 | """Return the fractional value which corresponds to a slider |
| 3730 | position of X,Y.""" |
| 3731 | return self.tk.getdouble(self.tk.call(self._w, 'fraction', x, y)) |
| 3732 | |
| 3733 | def identify(self, x, y): |
| 3734 | """Return the element under position X,Y as one of |