CellValueType enumeration

CellValueType enumeration

Specifies a cell value type.

The CellValueType type exposes the following members:

Fields

FieldDescription
IS_UNKNOWNCell value type is unknown.
IS_NULLBlank cell. Corresponding value should be null.
IS_NUMERICCell value is numeric. Corresponding value must be int or double.
IS_DATE_TIMECell value is datetime. Corresponding value must be DateTime.
IS_STRINGCell value is string. Corresponding value must be string.
IS_BOOLCell value is boolean. Corresponding value must be bool.
IS_ERRORCell contains error value. Corresponding value must be error string.

See Also