GcSpread.Sheets Namespace > Sheet type : fromJSON Method |
var instance = new GcSpread.Sheets.Sheet(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);