TcxTextEditIncrementalFilteringOption Enum
Enumerates option flags that affect the incremental text filtering behavior.
Declaration
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