Slider.Minimum

From Xojo Documentation

Property (As Integer )
aSlider.Minimum = newIntegerValue
or
IntegerValue = aSlider.Minimum

Supported for all project types and targets.

The minimum value of the slider. The default is 0.

Example

This example is in the Open event of the control. It sets the minimum and maximum values of the Slider.

Me.Maximum = 50
Me.Minimum = 10