! \overload Returns the contents of the cell \a cell. \sa cellAt() */
| 620 | \sa cellAt() |
| 621 | */ |
| 622 | QVariant Document::read(const CellReference &cell) const |
| 623 | { |
| 624 | if (Worksheet *sheet = currentWorksheet()) |
| 625 | return sheet->read(cell); |
| 626 | return QVariant(); |
| 627 | } |
| 628 | |
| 629 | /*! |
| 630 | Returns the contents of the cell (\a row, \a col). |
no outgoing calls
no test coverage detected