Chapter Contents |
Previous |
Next |
Extended Table: _setMaxrow |
Syntax | |
Details | |
Example |
Syntax |
CALL NOTIFY (extended-table-name, '_setMaxrow', in-maxrow); |
Argument | Type | Description |
---|---|---|
in-maxrow |
N | the maximum row |
Details |
This method is for non-dynamic tables. The ratio of the maximum number of rows to the visible rows determines the size of the thumb in the vertical scroll bar. See _getVisrow in this class.
_setMaxrow causes the GETROW section of your SCL program to execute in the following cases:
Example |
_setMaxrow assigns the maximum number of rows that can be displayed in TABLE based on the number of observations in a data set:
dsid=open('work.temp'); nobs=attrn(dsid, 'nobs'); call notify('table','_set_maxrow_',nobs);
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.