selectedCells property

Set<ReadableCell> get selectedCells

Selected cells, translated to VISIBLE row addresses.

Implementation

Set<ReadableCell> get selectedCells {
  final out = <ReadableCell>{};
  for (final c in _selCells) {
    final v = _visibleOf(c.row);
    if (v >= 0) out.add(ReadableCell(v, c.col));
  }
  return out;
}