selectedNext

selectedNext(r: Integer io;
             c: Integer io): Boolean;

The selectedNext method of the JadeTableSheet class returns the next selected cell following the row and column specified in the r and c parameters for the Table sheet referenced by this object.

For a description of this method, see the Table control selectedNext method.

The following example steps through all of the selected cells of the current sheet of a table.

vars
    row      : Integer;
    col      : Integer;
    tblSheet : JadeTableSheet;
begin
    tblSheet := table1.accessSheet(2);
    while tblSheet.selectedNext(row, col) do
        ...
    endwhile;
end;