var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: any value = instance.fromJSON(sheetSettings);
function fromJSON( sheetSettings : Object ) : any;
パラメータ
- sheetSettings
- 逆シリアル化されたシートのデータ。
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({ includeBindingSource: false })); //import activeSheet.fromJSON(JSON.parse(jsonStr)); alert(jsonStr);