GcSpread.Sheets Namespace > ComboBoxCellType class : editorValueType Method |
var instance = new GcSpread.Sheets.ComboBoxCellType(); var returnValue; // Type: EditorValueType returnValue = instance.editorValueType(value);
function editorValueType( value : EditorValueType ) : EditorValueType;
var cellType2 = new GcSpread.Sheets.ComboBoxCellType(); cellType2.items(["a","b","c"]); activeSheet.getCell(2, 2).cellType(cellType2); alert(cellType2.editorValueType());