New to Telerik UI for WPFStart a free 30-day trial

Settings class for FileSearchProvider.

Definition

Namespace:Telerik.Windows.Controls.FileSearch

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public class SearchSettings

Inheritance: objectSearchSettings

Constructors

Initializes a new instance of the SearchSettings class.

C#
public SearchSettings(double searchTimerInterval = 200, int chunkItemsCount = 30, bool isFolderSearch = false)
Parameters:searchTimerIntervaldoublechunkItemsCountintisFolderSearchbool

Properties

Gets or sets a value indicating whether the FileSearchProvider will return only folders.

C#
public bool IsFolderSearch { get; set; }

Gets or sets the count of search items passed via the FileSearchProgressChanged event.

C#
public int ResultsChunkItemsCount { get; set; }

Gets or sets the interval of time on which search parameters are invalidated when SearchAsyncWithTimer method is used.

C#
public double SearchTimerInterval { get; set; }