! \overload Write a QUrl \a url to the cell \a row_column with the given \a format \a display and \a tip. Returns true on success. */
| 982 | Returns true on success. |
| 983 | */ |
| 984 | bool Worksheet::writeHyperlink(const CellReference &row_column, const QUrl &url, const Format &format, const QString &display, const QString &tip) |
| 985 | { |
| 986 | if (!row_column.isValid()) |
| 987 | return false; |
| 988 | |
| 989 | return writeHyperlink(row_column.row(), row_column.column(), url, format, display, tip); |
| 990 | } |
| 991 | |
| 992 | /*! |
| 993 | Write a QUrl \a url to the cell (\a row, \a column) with the given \a format \a display and \a tip. |
nothing calls this directly
no test coverage detected