Chapter Contents

Previous

Next
Extended Table: _getLastSel

Extended Table: _getLastSel



Returns the row number of the most recently selected or deselected row


Syntax
Example

Syntax

CALL NOTIFY (extended-table-name, '_getLastSel', out-row-number, out-is-selected);

Argument Type Description
out-row-number
N the row number of the last row selected or deselected
out-is-selected
N a value indicating the status of the row:


^=0 currently selected


0 not selected


Example

_getLastSel returns the number of the last row selected or deselected by the user:

   call notify('table','_get_last_sel_',
                row,issel);
   if (issel) then
      put 'The last selected row was' 
       || row || 'and it is selected.'
   else
      put 'The last selected row was'
        || row || 'and it is NOT selected.'


Chapter Contents

Previous

Next

Top of Page

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