cell_value_t
Defined in header: <ixion/types.hpp>
-
enum class ixion::cell_value_t : std::uint8_t
Similar to cell_t, except that it does not include a formula type. Instead it uses the formula result type to classify its type. The error type refers to an error value in formula cell.
Values:
-
enumerator unknown
unknown cell value type.
-
enumerator string
either the cell contains a raw string value, or a calculated formula cell whose result is of string type.
-
enumerator numeric
either the cell contains a raw numeric value, or a calculated formula cell whose result is of numeric type.
-
enumerator error
this type corresponds with a formula cell whose result contains an error.
-
enumerator boolean
either the cell contains a raw boolean value type, or a calculated formula cell whose result is of boolean type.
-
enumerator empty
the cell is empty and contains nothing whatsoever.
-
enumerator unknown