Return a tuple (X,Y) of the point along the centerline of the trough that corresponds to VALUE or the current value if None is given.
(self, value=None)
| 3555 | self.tk.call(self._w, 'set', value) |
| 3556 | |
| 3557 | def coords(self, value=None): |
| 3558 | """Return a tuple (X,Y) of the point along the centerline of the |
| 3559 | trough that corresponds to VALUE or the current value if None is |
| 3560 | given.""" |
| 3561 | |
| 3562 | return self._getints(self.tk.call(self._w, 'coords', value)) |
| 3563 | |
| 3564 | def identify(self, x, y): |
| 3565 | """Return where the point X,Y lies. Valid return values are "slider", |