Spread.Sheets
CellBindingSource コンストラクタ
データソース。
セル連結のソースを表します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Bindings.CellBindingSource(source);
Javascript (Specification) 
function CellBindingSource( 
   source : Object
) : CellBindingSource;

パラメータ

source
データソース。
使用例
var person = {name: "Wang feng", age: 25, address: {postcode: "710075"}};
var source = new GC.Spread.Sheets.Bindings.CellBindingSource(person);
activeSheet.setBindingPath(0, 0, "name");
activeSheet.setBindingPath(1, 1, "age");
activeSheet.setBindingPath(3, 3, "address.postcode");
activeSheet.setDataSource(source);

関連トピック

参照

CellBindingSource タイプ

 

 


© 2016-2018, GrapeCity inc. All rights reserved.