New to Telerik Reporting? Start a free 30-day trial
SearchInfo Overview
The info object passed to the report engine to perform a search.
JSON
{
"searchToken": "foo",
"matchCase": false,
"matchWholeWord": false,
"useRegularExpressions": true
}
Fields
| Field | Type | Required | Description |
|---|---|---|---|
searchToken | String | true | The text to be searched for. |
matchCase | boolean | true | Determines if the search is case-sensitive. |
matchWholeWord | boolean | true | Determines if the search will consider only words. Internally uses the following regular expression:`(?<=\W |
useRegularExpressions | boolean | true | Determines if the search should be performed using regular expressions to match the passed token. |