! * \overload * Returns the cell at the position \a pos. If there is no cell at * the specified position, the function returns 0. * * \sa read() */
| 995 | * \sa read() |
| 996 | */ |
| 997 | Cell *Document::cellAt(const CellReference &pos) const |
| 998 | { |
| 999 | if (Worksheet *sheet = currentWorksheet()) |
| 1000 | return sheet->cellAt(pos); |
| 1001 | return nullptr; |
| 1002 | } |
| 1003 | |
| 1004 | /*! |
| 1005 | * Returns the cell at the given \a row and \a col. If there |
no outgoing calls
no test coverage detected