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