asposecells.api

Class CellValueType

Utility class containing constants. Specifies a cell value type.

Field Summary
const  intIS_UNKNOWN
Cell value type is unknown.
const  intIS_NULL
Blank cell. Corresponding value should be null.
const  intIS_NUMERIC
Cell value is numeric. Corresponding value must be int or double.
const  intIS_DATE_TIME
Cell value is datetime. Corresponding value must be DateTime.
const  intIS_STRING
Cell value is string. Corresponding value must be string.
const  intIS_BOOL
Cell value is boolean. Corresponding value must be bool.
const  intIS_ERROR
Cell contains error value. Corresponding value must be error string.
 

    • Field Detail

      • IS_UNKNOWN

        const int IS_UNKNOWN
        Cell value type is unknown.
      • IS_NULL

        const int IS_NULL
        Blank cell. Corresponding value should be null.
      • IS_NUMERIC

        const int IS_NUMERIC
        Cell value is numeric. Corresponding value must be int or double.
      • IS_DATE_TIME

        const int IS_DATE_TIME
        Cell value is datetime. Corresponding value must be DateTime.
      • IS_STRING

        const int IS_STRING
        Cell value is string. Corresponding value must be string.
      • IS_BOOL

        const int IS_BOOL
        Cell value is boolean. Corresponding value must be bool.
      • IS_ERROR

        const int IS_ERROR
        Cell contains error value. Corresponding value must be error string.