Remove all of the specified items from the selection.
(self, *items)
| 1425 | |
| 1426 | |
| 1427 | def selection_remove(self, *items): |
| 1428 | """Remove all of the specified items from the selection.""" |
| 1429 | self._selection("remove", items) |
| 1430 | |
| 1431 | |
| 1432 | def selection_toggle(self, *items): |