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

stepUp()

Karl edited this page Apr 16, 2018 · 2 revisions

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

slider.stepUp();

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

// increase the first handle's value
slider.stepUp(0);

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