displayAt method

String displayAt(
  1. int r,
  2. int c
)

The string shown in cell (r,c) — equals the stored value for most kinds, but resolves a ComputedColumn against the whole row.

Implementation

String displayAt(int r, int c) => columns[c].displayValue(_rows[r]);