Clear the selection if it is in this widget.
(self)
| 3245 | self.tk.call(self._w, 'select', 'adjust', tagOrId, index) |
| 3246 | |
| 3247 | def select_clear(self): |
| 3248 | """Clear the selection if it is in this widget.""" |
| 3249 | self.tk.call(self._w, 'select', 'clear') |
| 3250 | |
| 3251 | def select_from(self, tagOrId, index): |
| 3252 | """Set the fixed end of a selection in item TAGORID to INDEX.""" |
no test coverage detected