! \overload Add the range(\a firstRow, \a firstCol, \a lastRow, \a lastCol) on which the DataValidation will apply to. */
| 351 | which the DataValidation will apply to. |
| 352 | */ |
| 353 | void DataValidation::addRange(int firstRow, int firstCol, int lastRow, int lastCol) |
| 354 | { |
| 355 | d->ranges.append(CellRange(firstRow, firstCol, lastRow, lastCol)); |
| 356 | } |
| 357 | |
| 358 | /*! |
| 359 | Add the \a range on which the DataValidation will apply to. |
no test coverage detected