MagicProgressSliderBase
The MagicProgressSliderBase
represents the base for widgets that can be used as progressbar and slider.
Properties
value
(in_out float): The value. Defaults to the minimum.minimum
(in_out float): The minimum value (default: 0).maximum
(in_out float): The maximum value (default 100).progress
(out float): Returns the value mapped between range of 0 to 1 (default 0).range
(out float): Returns the range (maximum - minimum).style
(in RangeStyle): Defines the style of the widget.value
(in_out float): The value. Defaults to the minimum.indeterminate
(in bool): Set totrue
if the progress of the operation cannot be determined by value (default value:false
).interactive
(in bool): Set totrue
to display the widget as slider (default value:false
).enabled
(in bool): If set tofalse
the widget is disabled.has_focus
(out bool): Is true when the element has keyboard focus.step_size
(in float): The increment / decrement value on keyboard operations (default 1).
Callbacks
edited(/* value */ float)
: Invoked when value is changed by user interaction.