Sets/Returns the progress meter border width currently in use :return: border width currently in use for progress meters :rtype: (int)
(border_width=None)
| 19842 | |
| 19843 | |
| 19844 | def 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 | |
| 19856 | def theme_element_text_color(color=None): |
nothing calls this directly
no test coverage detected