Spread.Sheets
setValue メソッド
行インデックス。
設定する値。
連結パスによってソースの値を設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.Bindings.CellBindingSource(source);
var returnValue; // Type: any
returnValue = instance.setValue(path, value);
Javascript (Specification) 
function setValue( 
   path : string,
   value : Object
) : any;

パラメータ

path
行インデックス。
value
設定する値。
使用例
次のサンプルコードは、名前の値を設定します。
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);
source.setValue("name", "test");
activeSheet.resumePaint();
activeSheet.repaint();

関連トピック

参照

CellBindingSource タイプ

 

 


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