CellValue

CellValue class

Represents the cell value and corresponding type.

class CellValue;

Constructors

NameDescription
constructor()Default Constructor.

Properties

PropertyTypeDescription
typeCellValueTypeGets/sets the type of cell value.
valueVObjectGets/sets the cell value.

constructor()

Default Constructor.

constructor();

type

Gets/sets the type of cell value.

type : CellValueType;

value

Gets/sets the cell value.

value : VObject;

Remarks

The value must be of the correct type of object corresponding to the Type: Type Value CellValueType.IsNull null, any other object will be ignored CellValueType.IsNumeric double CellValueType.IsDateTime DateTime CellValueType.IsString string CellValueType.IsBool bool CellValueType.IsError error string such as “#VALUE!”, “#NAME?”, … </list