step property

double step
final

a step value which will be used to move the slider. default = 1.0

i.e. if the step = 1.0 then moving slider from left to right will result in following values in order: 1.0, 2.0, 3.0, 4.0, ..., 100.0

if the step = 5.0 then the same slider movement will result in: 5.0, 10.0, 15.0, 20.0, ..., 100.0

Implementation

final double step;