| GC.Spread.Sheets 名前空間 > CellTypes タイプ : EditorValueType フィールド |
| Javascript (Usage) | |
|---|---|
var value; // Type: EditorValueType value = GC.Spread.Sheets.CellTypes.EditorValueType; | |
| Javascript (Specification) | |
|---|---|
var EditorValueType : EditorValueType; | |
// 次のサンプルコードは、EditorValueType列挙体を使用します。 var cellType2 = new GC.Spread.Sheets.CellTypes.ComboBox(); cellType2.items(["a","b","c"]); cellType2.editorValueType(GC.Spread.Sheets.CellTypes.EditorValueType.text); activeSheet.getCell(2, 2).cellType(cellType2);