@brief Convert an Excel A1 cell string into a (row, col) pair.
Convert an Excel A1 cell string into a (row, col) pair.
This is a little syntactic shortcut to help with worksheet layout:
@code worksheet_write_string(worksheet, CELL("A1"), "Foo", NULL);
//Same as: worksheet_write_string(worksheet, 0, 0, "Foo", NULL); @endcode
@note
This macro shouldn't be used in performance critical situations since it expands to two function calls.
See Implementation
@brief Convert an Excel A1 cell string into a (row, col) pair.
Convert an Excel A1 cell string into a (row, col) pair.
This is a little syntactic shortcut to help with worksheet layout:
@code worksheet_write_string(worksheet, CELL("A1"), "Foo", NULL);
//Same as: worksheet_write_string(worksheet, 0, 0, "Foo", NULL); @endcode
@note
This macro shouldn't be used in performance critical situations since it expands to two function calls.