DAZ Script |
---|
DzFloatSlider ( DzWidget parent ) |
void | editCancelled () |
void | valueChanged ( Number value ) |
Provides a control that allows a user to adjust a bounded floating point value.
Holds the default value of the slider.
Since:
Holds whether the slider text is displayed as a percentage value. false
by default.
If true
, the slider is considered to have an 'indeterminate' or '<?>' value. false
by default.
Holds the maximum value of the slider. Any attempt to set this to a value that is less than the current min
will fail.
Holds the minimum value of the slider. Any attempt to set this to a value that is greater than the current max
will fail.
Holds the sensitivity of the slider.
Holds the current value of the slider.
DzFloatSlider( DzWidget parent )
Creates a slider as a child of the given parent widget.
Parameter(s):
void : editCancelled()
Signature:“editCancelled()”
Since:
void : valueChanged( Number value )
Signature:“valueChanged(float)”
Emitted when the value of the slider changes, passes the new value.