Class SearchEventArgs<TValue>
Provides information about the Searching event callback.
Inheritance
System.Object
SearchEventArgs<TValue>
Namespace: Syncfusion.Blazor.FileManager
Assembly: Syncfusion.Blazor.dll
Syntax
public class SearchEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | Specifies the TValue of FileManager events. |
Constructors
SearchEventArgs()
Declaration
public SearchEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the corresponding search operation.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | 'true' if the search action must be cancelled; otherwise 'false'. |
Remarks
Default search can be prevented using this option and custom searching can be performed.
Path
Gets the path for the FileManager component.
Declaration
public string Path { get; }
Property Value
Type | Description |
---|---|
System.String | Represents the relative or absolute path of the directory. |
Response
Gets or sets the search action response.
Declaration
public FileManagerResponse<TValue> Response { get; set; }
Property Value
Type | Description |
---|---|
FileManagerResponse<TValue> | Represents the search action response. |
SearchText
Gets or sets the search text for a file item.
Declaration
public string SearchText { get; set; }
Property Value
Type | Description |
---|---|
System.String | Represents the search text for a file or folder. |