Skip to main content

TcxFilterCriteria.TranslateIn Property

Specifies whether the IN and ‘NOT IN’ operators in a filter condition are replaced with comparison and logical operators.

Declaration

property TranslateIn: Boolean read; write; default False;

Property Value

Type Default
Boolean False

Remarks

An example of the FilterText property value depending on the TranslateIn settings is demonstrated below:

TranslateIn is False TranslateIn is True
(RUNTIME IN (140,160)) ((RUNTIME=140) OR (RUNTIME=160))

The default value of the TranslateIn property is False.

See Also