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

Function theme_progress_bar_border_width

PySimpleGUI/PySimpleGUI.py:19844–19853  ·  view source on GitHub ↗

Sets/Returns the progress meter border width currently in use :return: border width currently in use for progress meters :rtype: (int)

(border_width=None)

Source from the content-addressed store, hash-verified

19842
19843
19844def theme_progress_bar_border_width(border_width=None):
19845 """
19846 Sets/Returns the progress meter border width currently in use
19847
19848 :return: border width currently in use for progress meters
19849 :rtype: (int)
19850 """
19851 if border_width is not None:
19852 set_options(progress_meter_border_depth=border_width)
19853 return DEFAULT_PROGRESS_BAR_BORDER_WIDTH
19854
19855
19856def theme_element_text_color(color=None):

Callers

nothing calls this directly

Calls 1

set_optionsFunction · 0.85

Tested by

no test coverage detected