pub unsafe extern "C" fn uiSliderSetRange(
s: *mut uiSlider,
min: c_int,
max: c_int,
)
Expand description
Sets the slider range.
@param s uiSlider instance. @param min Minimum value. @param max Maximum value. @todo Make sure to clamp the slider value to the nearest value in range - should it be out of range. Call uiSliderOnChanged() in such a case. @memberof uiSlider