SpreadJS Documentation
value Method
The cell value.
Gets or sets the unformatted value of the cell.
Syntax
var instance = new GcSpread.Sheets.Cell(sheet, row, col, sheetArea);
var returnValue; // Type: object
returnValue = instance.value(value);
function value( 
   value : object
) : object;

Parameters

value
The cell value.

Return Value

The cell value.
Example
This example returns information about the specified cell.
activeSheet.getColumn(3).visible(false);
activeSheet.getCell(0,3).value("Test");
activeSheet.getColumn(1).width(100);
This example returns the value in the specified cell in the active sheet.
activeSheet.getCell(1,1).value(10);
Remarks
The default value is null.
See Also

Reference

Cell type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.