removeComment method

void removeComment(
  1. CellIndex index
)
inherited

Removes the comment from the cell at index (no-op if there is none).

Implementation

void removeComment(CellIndex index) {
  if (_comments.remove(getCellId(index.columnIndex, index.rowIndex)) !=
      null) {
    _commentsChanged = true;
  }
}