! * Returns the reference cells of the formula. For normal formula, * this will return an invalid CellRange object. */
| 133 | * this will return an invalid CellRange object. |
| 134 | */ |
| 135 | CellRange CellFormula::reference() const |
| 136 | { |
| 137 | return d ? d->reference : CellRange(); |
| 138 | } |
| 139 | |
| 140 | /*! |
| 141 | * Returns whether the formula is valid. |
no test coverage detected