Skip to main content
A newer version of this page is available. .

RepositoryItemLookUpEdit.UseDropDownRowsAsMaxCount Property

Gets or sets whether the number of visible data rows limits the height of the dropdown window.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(false)]
public bool UseDropDownRowsAsMaxCount { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if the height of the dropdown cannot be greater than the number of data rows; otherwise, false.

Remarks

You can control the height of the dropdown by using the RepositoryItemLookUpEdit.DropDownRows property, which specifies the number of rows simultaneously displayed in the dropdown window. The following image shows a LookUpEdit control with the RepositoryItemLookUpEdit.DropDownRows property set to 7 and the UseDropDownRowsAsMaxCount property set to false (default value):

RepositoryItemLookUpEdit_DropDownRowsNumber

Because the data source only contains five data rows, you see two empty rows at the bottom of the dropdown. To vertically shrink the dropdown to fit available data rows, set the UseDropDownRowsAsMaxCount property to true. In this case, the height of the dropdown cannot be greater than the number of data rows.

RepositoryItemLookUpEdit_DropDownRowsNumberDecreased

See Also