GcSpread.Sheets Namespace : EditorValueType Enumeration |
Member | Description |
---|---|
Index | Writes the index of the selected item to the model. |
Text | Writes the text value of the selected item to the model. |
Value | Writes the corresponding data value of the selected item to the model. |
var cellType2 = new GcSpread.Sheets.ComboBoxCellType(); cellType2.items(["a","b","c"]); cellType2.editorValueType(GcSpread.Sheets.EditorValueType.Text); activeSheet.getCell(2, 2).cellType(cellType2);
Object
GcSpread.Sheets.EditorValueType