Vcl.StdCtrls.TCustomComboBox.AutoComplete
Delphi
property AutoComplete: Boolean read FAutoComplete write FAutoComplete default True;
C++
__property bool AutoComplete = {read=FAutoComplete, write=FAutoComplete, default=1};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Vcl.StdCtrls.pas Vcl.StdCtrls.hpp |
Vcl.StdCtrls | TCustomComboBox |
Description
Positions to matching list items as you type.
AutoComplete will position to matching list values as you type, saving you keystrokes.
As you type, the ItemIndex property is updated with the list entry that matches the characters you have entered. As you type, different list entries may match, and ItemIndex changes accordingly.
There is a delay of AutoCompleteDelay milliseconds between the characters typed and the autocomplete operation.
See Also
Code Examples