Internal callback function for when an entry is selected in a Spinbox. Note that the parm is optional because it's not used if arrows are used to change the value but if the return key is pressed, it will include the event parm :param event: Event data passed in by t
(self, event=None)
| 1363 | |
| 1364 | |
| 1365 | def _SpinboxSelectHandler(self, event=None): |
| 1366 | """ |
| 1367 | Internal callback function for when an entry is selected in a Spinbox. |
| 1368 | Note that the parm is optional because it's not used if arrows are used to change the value |
| 1369 | but if the return key is pressed, it will include the event parm |
| 1370 | :param event: Event data passed in by tkinter (not used) |
| 1371 | :type event: |
| 1372 | """ |
| 1373 | self._generic_callback_handler('') |
| 1374 | |
| 1375 | def _RadioHandler(self): |
| 1376 | """ |
nothing calls this directly
no test coverage detected