Return True if there are characters selected in the entry, False otherwise.
(self)
| 3382 | select_from = selection_from |
| 3383 | |
| 3384 | def selection_present(self): |
| 3385 | """Return True if there are characters selected in the entry, False |
| 3386 | otherwise.""" |
| 3387 | return self.tk.getboolean( |
| 3388 | self.tk.call(self._w, 'selection', 'present')) |
| 3389 | |
| 3390 | select_present = selection_present |
| 3391 |