Range

>>-aSliderControl~Range----------------------------------------><


The Range method retrieves the minimum and maximum positions of the slider.

Return value:

The minimum and maximum positions of the slider, separated by a blank.

Example:

The following example displays the range of a slider:

::method DisplayRange
  ctrl=self~GetSlidercontrol("IDC_1")
  range = ctrl~Range
  parse var range min max
  say min max