Return True if there are characters selected in the entry, False otherwise.
(self)
| 3301 | select_from = selection_from |
| 3302 | |
| 3303 | def selection_present(self): |
| 3304 | """Return True if there are characters selected in the entry, False |
| 3305 | otherwise.""" |
| 3306 | return self.tk.getboolean( |
| 3307 | self.tk.call(self._w, 'selection', 'present')) |
| 3308 | |
| 3309 | select_present = selection_present |
| 3310 |
nothing calls this directly
no test coverage detected