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)
| 19817 | |
| 19818 | |
| 19819 | def 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 | |
| 19832 | def theme_slider_border_width(border_width=None): |
nothing calls this directly
no test coverage detected