Chapter Contents |
Previous |
Next |
Extended Table: _vscroll |
Syntax | |
Example |
Syntax |
CALL NOTIFY (extended-table-name, '_vscroll', <in-unit><, in-num-units>); |
Argument | Type | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
in-unit |
C | the scrolling unit:
|
||||||||
in-num-units |
N | the number of units (positive, for scroll down, negative, for scroll up). The default scroll amount is used if in-unit is not specified. See _setVscroll in this class. |
Example |
This statement scrolls TABLE up eight rows:
call notify('table','_vscroll_','row',-8);
This statement scrolls the table to the top:
call notify('table','_set_vscroll_', 'max',-1);
You can also scroll the table to the top using the _setToprow method.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.