Skip to main content

TcxCustomTextEditProperties.IncrementalFilteringOptions Property

Specifies incremental filtering behavior flags.

Declaration

property IncrementalFilteringOptions: TcxTextEditIncrementalFilteringOptions read; write; default [ifoHighlightSearchText, ifoUseContainsOperator];

Property Value

Type Description
TcxTextEditIncrementalFilteringOptions

The set of flags that correspond to individual incremental filtering behavior options.

Remarks

Use the IncrementalFilteringOptions property to modify incremental filtering behavior when the IncrementalFiltering property is set to True.

Available Options

The IncrementalFilteringOptions property value can include the following behavior flags in any combination:

ifoHighlightSearchText
Search terms are highlighted wherever they appear in the results.
ifoUseContainsOperator

Applies the CONTAINS filter condition operator to incremental filtering operations instead of the BEGINS WITH operator. The displayed list contains all items that contain the specified character sequence.

Note

If the ifoUseContainsOperator flag is omitted, incremental filtering operations use the BEGINS WITH operator. This option often reduces result list size.

Default Value

The IncrementalFilteringOptions property’s default value is [ifoHighlightSearchText, ifoUseContainsOperator].

Note

The TcxLookupComboBoxProperties class changes the default IncrementalFilteringOptions property value to [].

Incremental Filtering Options in Other Products

TcxCustomEditContainerItemFilterPopupIncrementalFilteringOptions.Options
Specifies the optional attributes of the incremental filtering functionality in an editor container’s classic filter dropdown.
TcxCustomGridTableItemOptions.FilteringPopupIncrementalFilteringOptions
Specifies how incremental filtering is applied to the grid item’s classic filter dropdown window.
TcxPivotGridFieldOptions.FilteringPopupIncrementalFilteringOptions
Specifies how incremental filtering is applied to the field’s filter dropdown list.
See Also