GC.Spread.Sheets Namespace > Worksheet type : fromJSON Method |
var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: any value = instance.fromJSON(sheetSettings);
function fromJSON( sheetSettings : Object ) : any;
activeSheet.getCell(0,0).value(123); var jsonStr = null; //export jsonStr = JSON.stringify(activeSheet.toJSON()); //import activeSheet.fromJSON(JSON.parse(jsonStr)); alert(jsonStr);