CellValue

CellValue class

Represents the cell value and corresponding type.

Constructors

NameDescription
CellValue

Properties

NameTypeDescription
TypeintGets/sets the type of cell value. The value of the property is CellValueType integer constant.
ValueObjectGets/sets the cell value. The value must be of the correct type of object corresponding to the Type : Type Value CellVal

CellValue()

CellValue.Type property

Gets/sets the type of cell value. The value of the property is CellValueType integer constant.

Type: int

CellValue.Value property

Gets/sets the cell value. The value must be of the correct type of object corresponding to the Type : Type Value CellValueType.IS_NULL null, any other object will be ignored CellValueType.IS_NUMERIC double CellValueType.IS_DATE_TIME DateTime CellValueType.IS_STRING string CellValueType.IS_BOOL bool CellValueType.IS_ERROR error string such as “#VALUE!”, “#NAME?”, …

Type: Object