GcSpread.Sheets Namespace > ComboBoxCellType class : maxDropDownItems Method |
var instance = new GcSpread.Sheets.ComboBoxCellType(); var returnValue; // Type: number returnValue = instance.maxDropDownItems(value);
function maxDropDownItems( value : number ) : number;
var cellType2 = new GcSpread.Sheets.ComboBoxCellType(); cellType2.items(["a","b","c", "d", "e", "f", "g", "h"]); cellType2.maxDropDownItems(3); activeSheet.getCell(2, 2).cellType(cellType2);