[]
        
(Showing Draft Content)

GC.Spread.Sheets.CellTypes.EditorValueType

列挙体: EditorValueType

Sheets.CellTypes.EditorValueType

複数の値の選択肢を提供する特定のセル型で、選択された項目の何がデータモデルに書き出されるかを指定します。

readonly

実例

// 次のサンプルコードは、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);

Table of contents

列挙メンバー

列挙メンバー

index

index = 1

モデルに選択した項目のインデックスを書き込みます。


text

text = 0

選択された項目のテキスト値をモデルに書き込みます。


value

value = 2

選択された項目の対応するデータをモデルに書き込みます。