Vcl.ComCtrls.TAutoCompleteOptions
Delphi
type TAutoCompleteOptions = set of TAutoCompleteOption;
C++
typedef System::Set<TAutoCompleteOption, TAutoCompleteOption::acoAutoSuggest, TAutoCompleteOption::acoRtlReading> TAutoCompleteOptions;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
set typedef |
public | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | Vcl.ComCtrls |
Description
TAutoCompleteOptions specify options that control autocompletion.
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. |