small_increment = int;
Move the slider this much per click.
This attribute specifies how much a slider increments when the user clicks the end arrows of the slider.
int: an integer in the range of min_value and max_value. The default value is 1/100 of the total range.
Example
min_value = -16;
max_value = 16;
small_increment = 1;
big_increment = 10;
NOTE
- The default value of min_value is 0; the minimum value is -2,147,483,648. The default value of max_value is 10000; the maximum value is 2,147,483,647.
- Horizontal sliders increase in value from left to right; vertical sliders increase value from top to bottom.
Valid Tile