Slider.MaximumValue

From Xojo Documentation

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

New in 2019r2

Supported for all project types and targets.

The maximum value of the slider. The default is 100.

Example

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

Me.MaximumValue = 50
Me.MinimumValue = 10