dropdowncount property in for cell?

Is there a way to change the drop down count for a combobox editor in the grid?



  dbadvgrid1.Columns[2].Editor := edcomboedit;
  dbadvgrid1.Columns[2].ComboItems.clear;
  dbadvgrid1.Columns[2].ComboItems := sl;
  //
  //set dropdowncount for combobox editor here.  it is too small.
  //
  sl.Clear;

Thanks, Damon

You can set this with

grid.ControlLook.DropDownCount

Thank you Bruno.