Vcl.FileCtrl.TFilterComboBox.AutoComplete

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AutoComplete: Boolean read FAutoComplete write FAutoComplete default 1;

C++

__property AutoComplete = {default=1};

Properties

Type Visibility Source Unit Parent
property published
Vcl.FileCtrl.pas
Vcl.FileCtrl.hpp
Vcl.FileCtrl TFilterComboBox

Description

Positions to matching list items as you type.

Vcl.FileCtrl.TFilterComboBox.AutoComplete inherits from Vcl.StdCtrls.TCustomComboBox.AutoComplete. All content below this line refers to Vcl.StdCtrls.TCustomComboBox.AutoComplete.

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