Vcl.ComCtrls.TCustomComboBoxEx.DropDownCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DropDownCount: Integer read GetDropDownCount write SetDropDownCount default 8;

C++

__property int DropDownCount = {read=GetDropDownCount, write=SetDropDownCount, default=8};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomComboBoxEx

Description

Specifies the maximum number of items displayed in the drop-down list.

By default, the drop-down list is long enough to contain eight items without requiring the user to scroll to see them all. To make the drop-down list smaller or larger, specify a number larger or smaller than eight as the DropDownCount value.

If the DropDownCount value is larger than the number of items in the Items property, the drop-down list will be just large enough to hold all the possible choices and no more. If the DropDownCount value is smaller then the number of item in the Items property, the drop down list will display a scroll bar.

DropDownCount is meaningful only if Style is not csExSimple.

See Also