! \overload Add the range(\a firstRow, \a firstCol, \a lastRow, \a lastCol) on which the conditional formatting will apply to. */
| 417 | which the conditional formatting will apply to. |
| 418 | */ |
| 419 | void ConditionalFormatting::addRange(int firstRow, int firstCol, int lastRow, int lastCol) |
| 420 | { |
| 421 | d->ranges.append(CellRange(firstRow, firstCol, lastRow, lastCol)); |
| 422 | } |
| 423 | |
| 424 | /*! |
| 425 | Add the \a range on which the conditional formatting will apply to. |
no test coverage detected