[Overview][Types][Classes][Procedures and functions][Index] Reference for unit 'ComboEx' (#lcl)

TAutoCompleteOptions

Sets type used to store TAutoCompleteOption values.

Declaration

Source position: comboex.pas line 42

type TAutoCompleteOptions = set of (

  acoAutoSuggest,

  

Enables auto-suggest.

  acoAutoAppend,

  

Enables auto-appending items to the combo-box.

  acoSearch,

  

Enables searching items for the current value in the edit control.

  acoFilterPrefixes,

  

Enables prefixes in the filter for the control.

  acoUseTab,

  

Enables Tab key navigation in the control.

  acoUpDownKeyDropsList,

  

Enables toggling the visibility of the drop down using Up and Down cursor keys.

  acoRtlReading

  

Enables Right-to-Left text rendering (BiDi Mode) in the control.

);

Description

TAutoCompleteOptions is a set type used to store zero or more values from the TAutoCompleteOption enumeration. TAutoCompleteOptions is the type used to implement the AutoCompleteOptions property in TCustomComboBoxEx and TComboBoxEx. When an enumeration value is included in the set type, the corresponding feature enabled. When the value is excluded, the feature is disabled.

See also

TAutoCompleteOption

  

Enumerated type with values representing the auto-complete options used in TComboBoxEx.

TCustomComboBoxEx.AutoCompleteOptions

  

Contains settings for auto-complete features enabled in the control.

TComboBoxEx.AutoCompleteOptions

  

Contains settings for auto-complete features enabled in the control.


Version 3.2 Generated 2024-02-25 Home