jumpToCell method

void jumpToCell(
  1. int column,
  2. int row
)

Jump the table to the given cell.

Implementation

void jumpToCell(int column, int row) {
  table.jumpToCell(column, row);
}