Enum CellValueType

CellValueType enumeration

Specifies a cell value type.

public enum CellValueType

Values

NameValueDescription
IsUnknown0Cell value type is unknown.
IsNull1Blank cell. Corresponding value should be null.
IsNumeric2Cell value is numeric. Corresponding value must be int or double.
IsDateTime4Cell value is datetime. Corresponding value must be DateTime.
IsString8Cell value is string. Corresponding value must be string.
IsBool16Cell value is boolean. Corresponding value must be bool.
IsError32Cell contains error value. Corresponding value must be error string.

See Also