Chapter Contents

Previous

Next
Slider: _setMax

Slider: _setMax



Assigns the maximum value in a slider's range


Syntax
Example

Syntax

CALL NOTIFY (slider-name, '_setMax', max-val);

Argument Type Description
max-val
N specifies the maximum value in the slider's range


Example

The following example, which combines a critical success factor and a slider to produce a dynamically changeable CSF display, restricts the range of the CSF by decreasing the maximum value of the slider's range to 60:

INIT:
   csf = 30;
   call notify('slider1', '_set_max_', 60);
   slider1 = 30;
return;

SLIDER1:
   csf = slider1;
return;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.