CellValue
CellValue class
Represents the cell value and corresponding type.
class CellValue;
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Methods
Method | Description |
---|---|
getType() | Gets/sets the type of cell value. |
setType(CellValueType) | Gets/sets the type of cell value. |
getValue() | Gets/sets the cell value. |
setValue(object) | Gets/sets the cell value. |
isNull() | Checks whether the implementation object is null. |
constructor()
Default Constructor.
constructor();
getType()
Gets/sets the type of cell value.
getType() : CellValueType;
Returns
setType(CellValueType)
Gets/sets the type of cell value.
setType(value: CellValueType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | CellValueType | The value to set. |
getValue()
Gets/sets the cell value.
getValue() : object;
Remarks
The value must be of the correct type of object corresponding to the Type:
setValue(object)
Gets/sets the cell value.
setValue(value: object) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | object | The value to set. |
Remarks
The value must be of the correct type of object corresponding to the Type:
isNull()
Checks whether the implementation object is null.
isNull() : boolean;