Skip to main content
Tab

AutoCompleteBoxPropertiesBase.DropDownRows Property

Gets or sets the number of list items displayed within the editor’s scrollable dropdown window simultaneously.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(7)]
public int DropDownRows { get; set; }

Property Value

Type Default Description
Int32 7

An integer value that specifies the number of items to be displayed within the dropdown list.

Remarks

Use the DropDownRows property to define the height of the editor’s dropdown window, by specifying the number of items this window can display simultaneously. Note that the DropDownRows property is not in effect if the AutoCompleteBoxPropertiesBase.DropDownHeight property is defined.

Note

In callback mode (the AutoCompleteBoxPropertiesBase.EnableCallbackMode property is set to true), the DropDownRows property value should not be greater than the value of the AutoCompleteBoxPropertiesBase.CallbackPageSize property.

Note

The DropDownRows property synchronizes its value with the editor’s ASPxAutoCompleteBoxBase.DropDownRows property.

See Also