Spread.Sheets Documentation
formatter Method
The cell formatter string or object.
Gets or sets the formatter for the cell.
Syntax
var instance = new GC.Spread.Sheets.CellRange(sheet, row, col, rowCount, colCount, sheetArea);
var returnValue; // Type: any
returnValue = instance.formatter(value);
function formatter( 
   value : undefined
) : any;

Parameters

value
The cell formatter string or object.

Return Value

If no value is set, returns the cell formatter string or object; otherwise, returns the cell.
Example
The following examples set the formatter method.
activeSheet.getCell(1,1).formatter("0.000%");
activeSheet.getCell(1, -1).formatter("0.000%");
activeSheet.getCell(1,0).value("2");
activeSheet.getCell(-1, 0).formatter("0.000%");
activeSheet.getCell(0,0).value("2");
See Also

Reference

CellRange type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.