Chapter Contents |
Previous |
Next |
Scroll Bar: _setMin |
Syntax | |
Example |
Syntax |
CALL NOTIFY (scroll-bar-name, '_setMin', min-val); |
Argument | Type | Description |
---|---|---|
min-val |
N | specifies the minimum value in the scroll bar's range |
Example |
The following example, which combines a critical success factor and a scroll bar to produce a dynamically changeable CSF display, restricts the range of the CSF by increasing the minimum value in the scroll bar's range to 30 and decreasing the maximum value in the scroll bar's range to 60:
INIT: csf=30; call notify('sbar1','_set_min_',30); call notify('sbar1','_set_max_',60); sbar1=30; return; SBAR1: csf=sbar1; return;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.