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

Function theme_slider_border_width

PySimpleGUI/PySimpleGUI.py:19832–19841  ·  view source on GitHub ↗

Sets/Returns the slider border width currently in use :return: border width currently in use for sliders :rtype: (int)

(border_width=None)

Source from the content-addressed store, hash-verified

19830
19831
19832def theme_slider_border_width(border_width=None):
19833 """
19834 Sets/Returns the slider border width currently in use
19835
19836 :return: border width currently in use for sliders
19837 :rtype: (int)
19838 """
19839 if border_width is not None:
19840 set_options(slider_border_width=border_width)
19841 return DEFAULT_SLIDER_BORDER_WIDTH
19842
19843
19844def theme_progress_bar_border_width(border_width=None):

Callers

nothing calls this directly

Calls 1

set_optionsFunction · 0.85

Tested by

no test coverage detected