Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

stepDown()

Karl edited this page Apr 16, 2018 · 1 revision

Decreases the value of the slider by it's defined step property.

slider.stepDown();

When using double sliders, just pass the index of the slider as the first parameter:

// decrease the first handle's value
slider.stepDown(0);

// decrease the second handle's value
slider.stepDown(1);
Clone this wiki locally