Set the variable end of a selection to INDEX.
(self, index)
| 3396 | select_range = selection_range |
| 3397 | |
| 3398 | def selection_to(self, index): |
| 3399 | """Set the variable end of a selection to INDEX.""" |
| 3400 | self.tk.call(self._w, 'selection', 'to', index) |
| 3401 | |
| 3402 | select_to = selection_to |
| 3403 |