! * \brief App::CellAddress::parseAbsoluteAddress * \param address * If the passed string is a valid and absolute cell address it will be assigned to this instance. * \return True if it's an absolute cell address and false otherwise */
| 314 | * \return True if it's an absolute cell address and false otherwise |
| 315 | */ |
| 316 | bool App::CellAddress::parseAbsoluteAddress(const char* address) |
| 317 | { |
| 318 | if (maybeAbsolute(address)) { |
| 319 | CellAddress addr = stringToAddress(address, true); |
| 320 | if (addr.isValid()) { |
| 321 | *this = addr; |
| 322 | return true; |
| 323 | } |
| 324 | } |
| 325 | return false; |
| 326 | } |