Return the fractional value which corresponds to a slider position of X,Y.
(self, x, y)
| 3808 | self.tk.call(self._w, 'delta', deltax, deltay)) |
| 3809 | |
| 3810 | def fraction(self, x, y): |
| 3811 | """Return the fractional value which corresponds to a slider |
| 3812 | position of X,Y.""" |
| 3813 | return self.tk.getdouble(self.tk.call(self._w, 'fraction', x, y)) |
| 3814 | |
| 3815 | def identify(self, x, y): |
| 3816 | """Return the element under position X,Y as one of |