Sets/Returns the slider border width currently in use :return: border width currently in use for sliders :rtype: (int)
(border_width=None)
| 19830 | |
| 19831 | |
| 19832 | def 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 | |
| 19844 | def theme_progress_bar_border_width(border_width=None): |
nothing calls this directly
no test coverage detected