Add all of the specified items to the selection.
(self, *items)
| 1420 | |
| 1421 | |
| 1422 | def selection_add(self, *items): |
| 1423 | """Add all of the specified items to the selection.""" |
| 1424 | self._selection("add", items) |
| 1425 | |
| 1426 | |
| 1427 | def selection_remove(self, *items): |