Get the selected range Returns ------- tuple `(v_low, v_high)`, the values of `v_low` and `v_high` may be `int` or `float` type depending on the type set by `set_value_type()` method.
(self)
| 923 | return self._range_low, self._range_high |
| 924 | |
| 925 | def get_selection(self): |
| 926 | """ |
| 927 | Get the selected range |
| 928 | |
| 929 | Returns |
| 930 | ------- |
| 931 | tuple `(v_low, v_high)`, the values of `v_low` and `v_high` may be `int` |
| 932 | or `float` type depending on the type set by `set_value_type()` method. |
| 933 | """ |
| 934 | return self._value_low, self._value_high |
| 935 | |
| 936 | def emit_selection_changed(self): |
| 937 | """ |
no outgoing calls