Base Combo Box CellMax Drop Down Items Property
Gets or sets the maximum number of items to be shown in the drop-down portion of the combo box when
first displayed. It also controls how many items are skipped when paging up and down.
Definition
Namespace: EWSoftware.ListControls.DataGridViewControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
The value must be between 1 and 100. The value is only used the first time the drop-down portion is shown. The drop-down is resizable and it will remember the last used size until it is disposed.
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public int MaxDropDownItems { get; set; }VB
Public Property MaxDropDownItems As Integer
Get
SetC++
public:
property int MaxDropDownItems {
int get ();
void set (int value);
}F#
member MaxDropDownItems : int with get, setProperty Value
Int32The value must be between 1 and 100. The value is only used the first time the drop-down portion is shown. The drop-down is resizable and it will remember the last used size until it is disposed.
Exceptions
| ArgumentOutOfRangeException | This is thrown if the value is not between 1 and 100. |