Spread.Sheets
editorValueType メソッド
エディタ値のタイプ。
基になるデータモデルに書き込まれる値を取得または設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.CellTypes.ComboBox();
var returnValue; // Type: any
returnValue = instance.editorValueType(value);
Javascript (Specification) 
function editorValueType( 
   value : EditorValueType
) : any;

パラメータ

value
エディタ値のタイプ。

戻り値の型

値が設定されていない場合は、エディタ値のタイプを返します。値が設定されている場合は、コンボボックスセル型を返します。
使用例
次のサンプルコードは、型を取得します。
var cellType2 = new GC.Spread.Sheets.CellTypes.ComboBox(); 
cellType2.items(["a","b","c"]); 
activeSheet.getCell(2, 2).cellType(cellType2);
alert(cellType2.editorValueType());

関連トピック

参照

ComboBox クラス

 

 


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