Return the indices of currently selected item.
(self)
| 3469 | return self._getints(self.tk.call(self._w, 'bbox', index)) or None |
| 3470 | |
| 3471 | def curselection(self): |
| 3472 | """Return the indices of currently selected item.""" |
| 3473 | return self._getints(self.tk.call(self._w, 'curselection')) or () |
| 3474 | |
| 3475 | def delete(self, first, last=None): |
| 3476 | """Delete items from FIRST to LAST (included).""" |