Spread.Sheets Documentation
fromJSON Method
The spreadsheet data from deserialization.
Loads the object state from the specified JSON string.
Syntax
var instance = new GC.Spread.Sheets.Workbook(host);
var value; // Type: any
value = instance.fromJSON(workbookData);
function fromJSON( 
   workbookData : Object
) : any;

Parameters

workbookData
The spreadsheet data from deserialization.
Example
This example uses the fromJSON method.
activeSheet.getCell(0,0).value(123);
var jsonStr = null;
//export
jsonStr = JSON.stringify(spread.toJSON(false));
//import
spread.fromJSON(JSON.parse(jsonStr));
alert(jsonStr);
See Also

Reference

Workbook type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.