Skip to main content

TcxFilterCriteriaOption Enum

Enumerates different options for filtering data.

Declaration

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