void clearRange(int start, int end) { end = min(end, _maxCols); for (var index = start; index < end; index++) { cellClear(index); } }