Class FileSearchCompletedEventArgs
Event arguments for SearchCompleted event.
Inheritance
System.Object
FileSearchCompletedEventArgs
Namespace: Telerik.Windows.Controls.FileSearch
Assembly: Telerik.Windows.Controls.dll
Syntax
public class FileSearchCompletedEventArgs : EventArgs
Constructors
FileSearchCompletedEventArgs(Int32, Boolean)
Initializes a new instance of the FileSearchCompletedEventArgs class.
Declaration
public FileSearchCompletedEventArgs(int filesCount, bool isCanceled = false)
Parameters
System.Int32
filesCount
|
System.Boolean
isCanceled
|
Properties
FilesCount
The number files found before completion.
Declaration
public int FilesCount { get; }
Property Value
System.Int32
|
IsCanceled
Gets a value indicating whether the search operation is cancelled by the user.
Declaration
public bool IsCanceled { get; }
Property Value
System.Boolean
|