GcSpread.Sheets Namespace > Spread type : fromJSON Method |
var instance = new GcSpread.Sheets.Spread(host, options); var value; // Type: any value = instance.fromJSON(spreadData);
function fromJSON( spreadData : Object ) : any;
activeSheet.getCell(0,0).value(123); var jsonStr = null; //export jsonStr = JSON.stringify(spread.toJSON(false)); //import spread.fromJSON(JSON.parse(jsonStr)); alert(jsonStr);