MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / _SpinboxSelectHandler

Method _SpinboxSelectHandler

PySimpleGUI/PySimpleGUI.py:1365–1373  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected