|
UseSpecialCharacters
Property
Description:
If set to True, special characters +, - and | will be replaced with AND, NOT
and OR keywords. This property is used only if TypeOfSearch is set to
SearchExpression. If set to False, +, - and | are looked as a part of search
term, like any other character
Data type:
Boolean
Default value: True
Example:
To include special characters :
SearchControl1.UseSpecialCharacters = True;
After that, if user type: "Apple + banana", it will be understand like
"Apple AND Banana".
|
|