It’s very simple:
The following applies to the Slider
component:
For example, if: minValue = 0
, maxValue = 100
Then Slider.ThumbPosition
returns the following values:
0, 1, 2, 3, …, 100 → 100 values
If: minValue = 0
, maxValue = 10
Then Slider.ThumbPosition
returns the following values:
0, 0.1, 0.2, …, 0.9, 1.0 → 100 values
So, as I said before, basically 100 units are distributed over the appropriate interval.