TcxFilterCriteria.TranslateLike Property
Specifies whether the ‘NOT LIKE’ operator in a filter condition is replaced with the inverted logical expression of the LIKE operator.
Declaration
property TranslateLike: Boolean read; write; default False;
Property Value
Type | Default |
---|---|
Boolean | False |
Remarks
An example of the FilterText property’s value which depends on the TranslateLike setting is demonstrated below.
TranslateLike is False | TranslateLike is True |
---|---|
(NAME NOT LIKE ‘US’) | (NOT (NAME LIKE ‘US’)) |
The default value of the TranslateLike property is False.
See Also