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

TcxFilterCriteriaOption Enum

Enumerates different options for filtering data.

#Declaration

Delphi
TcxFilterCriteriaOption = (
    fcoCaseInsensitive,
    fcoShowOperatorDescription,
    fcoSoftNull,
    fcoSoftCompare,
    fcoIgnoreNull
);

#Members

Name
fcoCaseInsensitive
fcoShowOperatorDescription
fcoSoftNull
fcoSoftCompare
fcoIgnoreNull

#Remarks

Options include:

Value

Description

fcoCaseInsensitive

If set, filtering does not distinguish upper and lowercase characters.

fcoShowOperatorDescription

If set, operator symbols are replaced with their descriptions.

For instance, the = operator is replaced with the ‘equals’ string. Operator descriptions are defined as resource strings in the cxFilterConsts unit.

fcoSoftNull

If set, empty strings are considered as NULL values when comparing.

fcoSoftCompare

If set, no exception is thrown when comparing values of incompatible types.

fcoIgnoreNull

If set, NULL values are ignored when comparing and are excluded from the filtered results.

See Also