Vcl.ComCtrls.TAutoCompleteOption

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TAutoCompleteOption = (acoAutoSuggest, acoAutoAppend, acoSearch,
acoFilterPrefixes, acoUseTab, acoUpDownKeyDropsList, acoRtlReading);

C++

enum DECLSPEC_DENUM TAutoCompleteOption : unsigned char { acoAutoSuggest, acoAutoAppend, acoSearch, acoFilterPrefixes, acoUseTab, acoUpDownKeyDropsList, acoRtlReading };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls Vcl.ComCtrls

Description

TAutoCompleteOption and TAutoCompleteOptions specify a set of autocomplete options.

TAutoCompleteOptions defines options for controls that support autocompletion. These are:


Value Meaning

acoAutoSuggest

Enable the autosuggest drop-down list.

acoAutoAppend

Enable autoappend.

acoSearch

Add a search item to the list of completed strings. Selecting this item launches a search engine.

acoFilterPrefixes

Don't match common prefixes, such as "www." and "http://".

acoUseTab

Use the tab key to select items.

acoUpDownKeyDropsList

Use up and down arrow keys to display suggestion list.

acoRtlReading

Text direction is opposite of parent.