Class ItemsDeleteEventArgs<TValue>
Provides information about the ItemsDeleting event callback.
Inheritance
System.Object
ItemsDeleteEventArgs<TValue>
Namespace: Syncfusion.Blazor.FileManager
Assembly: Syncfusion.Blazor.dll
Syntax
public class ItemsDeleteEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | Specifies the TValue of FileManager events. |
Constructors
ItemsDeleteEventArgs()
Declaration
public ItemsDeleteEventArgs()
Properties
Cancel
Gets or sets a value indicating whether to cancel the corresponding delete action.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | 'true' if the delete action must be cancelled; otherwise 'false'. |
Files
Gets the details of the file or folder in which the delete action is executed.
Declaration
public List<TValue> Files { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TValue> | Represents the file details of the item to be deleted. |
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 delete action result.
Declaration
public FileManagerResponse<TValue> Response { get; set; }
Property Value
Type | Description |
---|---|
FileManagerResponse<TValue> | Represents the delete action result. |