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)
| 3766 | self.tk.call(self._w, 'set', value) |
| 3767 | |
| 3768 | def coords(self, value=None): |
| 3769 | """Return a tuple (X,Y) of the point along the centerline of the |
| 3770 | trough that corresponds to VALUE or the current value if None is |
| 3771 | given.""" |
| 3772 | |
| 3773 | return self._getints(self.tk.call(self._w, 'coords', value)) |
| 3774 | |
| 3775 | def identify(self, x, y): |
| 3776 | """Return where the point X,Y lies. Valid return values are "slider", |