Class SearchArgs
Represents the arguments passed to the GetSearchResults method of the IReportEngine.
Inheritance
Namespace: Telerik.Reporting.Services.Engine
Assembly: Telerik.Reporting.dll
Syntax
public class SearchArgs
Constructors
SearchArgs()
Declaration
public SearchArgs()
Properties
MatchCase
Determines if the search is case-sensitive.
Declaration
public bool MatchCase { get; set; }
Property Value
System.Boolean
|
MatchWholeWord
Determines if the search should respect whole words only.
Declaration
public bool MatchWholeWord { get; set; }
Property Value
System.Boolean
|
SearchToken
The token used to perform the search.
Declaration
public string SearchToken { get; set; }
Property Value
System.String
|
UseRegularExpressions
Determines if the search token represents a regular expression.
Declaration
public bool UseRegularExpressions { get; set; }
Property Value
System.Boolean
|