DAZ Script |
---|
DzFloatSlider ( DzWidget parent ) |
void | editCancelled () |
void | editEnd () |
void | editStart () |
void | valueChanged ( Number value ) |
A DzFloatSlider provides a control that allows a user to adjust a bounded floating point value.
Holds whether or not the slider obeys its limits. false
by default.
Holds the default value of the slider.
Since:
Holds whether or not the slider text is displayed as a percentage value. false
by default.
Holds whether or not editing the slider text causes the edit field to consume the full height/width of the slider. false
by default.
Since:
If true
, the slider is considered to have an 'indeterminate' or '<?>' value. false
by default.
Holds whether or not the value is currently being edited. (Read Only)
Since:
Holds the label text for the slider.
Holds whether or not the slider's label is visible.
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 whether or not the default value is restorable if the user holds the [Alt] key when clicked.
Since:
Holds the sensitivity of the slider.
Holds the text of the slider. (Read Only)
Holds whether or not the slider text is editable by the user. false
by default.
Holds whether or not the slider text is visible to the user. true
by default.
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()”
Emitted when the user cancels an edit of the slider.
Since:
void : editEnd()
Signature:“editEnd()”
Emitted when the user releases the slider.
void : editStart()
Signature:“editStart()”
Emitted when the user starts dragging the slider.
void : valueChanged( Number value )
Signature:“valueChanged(float)”
Emitted when the value of the slider changes, passes the new value.