Return True if INDEX is part of the selection.
(self, index)
| 3527 | select_clear = selection_clear |
| 3528 | |
| 3529 | def selection_includes(self, index): |
| 3530 | """Return True if INDEX is part of the selection.""" |
| 3531 | return self.tk.getboolean(self.tk.call( |
| 3532 | self._w, 'selection', 'includes', index)) |
| 3533 | |
| 3534 | select_includes = selection_includes |
| 3535 |
no test coverage detected