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

Function theme_border_width

PySimpleGUI/PySimpleGUI.py:19819–19829  ·  view source on GitHub ↗

Sets/Returns the border width currently in use Used by non ttk elements at the moment :return: border width currently in use :rtype: (int)

(border_width=None)

Source from the content-addressed store, hash-verified

19817
19818
19819def theme_border_width(border_width=None):
19820 """
19821 Sets/Returns the border width currently in use
19822 Used by non ttk elements at the moment
19823
19824 :return: border width currently in use
19825 :rtype: (int)
19826 """
19827 if border_width is not None:
19828 set_options(border_width=border_width)
19829 return DEFAULT_BORDER_WIDTH
19830
19831
19832def theme_slider_border_width(border_width=None):

Callers

nothing calls this directly

Calls 1

set_optionsFunction · 0.85

Tested by

no test coverage detected