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

Event arguments for SearchCompleted event.

Definition

Namespace:Telerik.Windows.Controls.FileSearch

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public class FileSearchCompletedEventArgs : EventArgs

Inheritance: objectEventArgsFileSearchCompletedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the FileSearchCompletedEventArgs class.

C#
public FileSearchCompletedEventArgs(int filesCount, bool isCanceled = false)
Parameters:filesCountintisCanceledbool

Properties

The number files found before completion.

C#
public int FilesCount { get; }

Gets a value indicating whether the search operation is cancelled by the user.

C#
public bool IsCanceled { get; }