Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxTextEditIncrementalFilteringOption Enum

Enumerates option flags that affect the incremental text filtering behavior.

#Declaration

Delphi
TcxTextEditIncrementalFilteringOption = (
    ifoHighlightSearchText,
    ifoUseContainsOperator
);

#Members

Name
ifoHighlightSearchText
ifoUseContainsOperator

#Remarks

Options include:

Value

Description

ifoHighlightSearchText

This flag highlights the matching substring in each item within the result list.

ifoUseContainsOperator

This flag applies the ‘CONTAINS’ filter condition operator to an incremental text search or filter operation. The result list includes every item that contains the matching substring.

Note that the incremental text search/filter operation uses the ‘BEGINS WITH’ filter condition operator instead of ‘CONTAINS’ without this flag. This decreases the result list size in most cases.

The TcxTextEditIncrementalFilteringOptions type references the TcxTextEditIncrementalFilteringOption type.

See Also