Class SearchSettings
Settings class for FileSearchProvider.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.FileSearch
Assembly: Telerik.WinControls.UI.dll
Syntax
public class SearchSettings
Constructors
SearchSettings(Int32, Int32, Boolean)
Initializes a new instance of the SearchSettings class.
Declaration
public SearchSettings(int searchTimerInterval = 200, int chunkItemsCount = 30, bool isFolderSearch = false)
Parameters
System.Int32
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 int SearchTimerInterval { get; set; }
Property Value
System.Int32
|