CellValueType Enum
CellValueType Enum
Specifies a cell value type.
type CellValueType int32
Fields
| Field | Description | 
|---|---|
| IsUnknown | Cell value type is unknown. | 
| IsNull | Blank cell. Corresponding value should be null. | 
| IsNumeric | Cell value is numeric. Corresponding value must be int or double. | 
| IsDateTime | Cell value is datetime. Corresponding value must be DateTime. | 
| IsString | Cell value is string. Corresponding value must be string. | 
| IsBool | Cell value is boolean. Corresponding value must be bool. | 
| IsError | Cell contains error value. Corresponding value must be error string. |