![]() Chapter Contents |
![]() Previous |
![]() Next |
| Extended Table: _issel |
| Syntax | |
| Example |
Syntax |
| CALL NOTIFY (extended-table-name, '_issel', in-row-number, status); |
| Argument | Type | Description | |
|---|---|---|---|
| in-row-number |
N | the number of the row to check for selected status | |
| status |
N | a value indicating whether the row is selected: | |
| ^=0 | selected | ||
| 0 | not selected | ||
| Example |
_issel reports whether the third row in the table named TABLE is currently selected:
call notify('table','_issel_',3,issel);
if (issel) then
put "The third row is currently
selected";
else
put "The third row is NOT currently
selected";
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.