Vcl.FileCtrl.TFileListBox.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 TFileListBox

Description

Determines whether the user can give focus to items by typing in the list.

Vcl.FileCtrl.TFileListBox.AutoComplete inherits from Vcl.StdCtrls.TCustomListBox.AutoComplete. All content below this line refers to Vcl.StdCtrls.TCustomListBox.AutoComplete.

Determines whether the user can give focus to items by typing in the list.

Use AutoComplete to specify whether the list box automatically updates the ItemIndex property in response to user keystrokes. When AutoComplete is true, the item with focus changes to the first item that begins with the sequence of characters that the user typed. As the user types more characters, ItemIndex may change to a later item because the string to match becomes longer.

See Also