Spread.Sheets
getValue メソッド
連結パス。
連結パスによってソースの値を取得します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Bindings.CellBindingSource(source);
var value; // Type: Object
value = instance.getValue(path);
Javascript (Specification) 
function getValue( 
   path : string
) : Object;

パラメータ

path
連結パス。

戻り値の型

指定したパスにある連結ソースの値を返します。
使用例
次のサンプルコードは、値を取得します。
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);
alert(source.getValue("name"));

関連トピック

参照

CellBindingSource タイプ

 

 


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