! \overload Write string \a value to the cell \a row_column with the \a format. Returns true on success. */
| 619 | Returns true on success. |
| 620 | */ |
| 621 | bool Worksheet::writeString(const CellReference &row_column, const RichString &value, const Format &format) |
| 622 | { |
| 623 | if (!row_column.isValid()) |
| 624 | return false; |
| 625 | |
| 626 | return writeString(row_column.row(), row_column.column(), value, format); |
| 627 | } |
| 628 | |
| 629 | /*! |
| 630 | Write string \a value to the cell (\a row, \a column) with the \a format. |
nothing calls this directly
no test coverage detected