Class SearchSettings
Settings class for FileSearchProvider.
Inheritance
Namespace: Telerik.Windows.Controls.FileSearch
Assembly: Telerik.Windows.Controls.dll
Syntax
public class SearchSettings : Object
Constructors
SearchSettings(Double, Int32, Boolean)
Initializes a new instance of the SearchSettings class.
Declaration
public SearchSettings(double searchTimerInterval = 200, int chunkItemsCount = 30, bool isFolderSearch = false)
Parameters
System.Double
searchTimerInterval
|
System.Int32
chunkItemsCount
|
System.Boolean
isFolderSearch
|
Properties
IsFolderSearch
Gets or sets a value indicating whether the FileSearchProvider will return only folders.
Declaration
public bool IsFolderSearch { get; set; }
Property Value
System.Boolean
|
ResultsChunkItemsCount
Gets or sets the count of search items passed via the FileSearchProgressChanged event.
Declaration
public int ResultsChunkItemsCount { get; set; }
Property Value
System.Int32
|
SearchTimerInterval
Gets or sets the interval of time on which search parameters are invalidated when SearchAsyncWithTimer method is used.
Declaration
public double SearchTimerInterval { get; set; }
Property Value
System.Double
|