Class FileSelectionEventArgs<TValue>
Class for FileSelection event arguments.
Inheritance
System.Object
FileSelectionEventArgs<TValue>
Namespace: Syncfusion.Blazor.FileManager
Assembly: Syncfusion.Blazor.dll
Syntax
public class FileSelectionEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | TValue. |
Constructors
FileSelectionEventArgs()
Declaration
public FileSelectionEventArgs()
Properties
Action
Return the name of action like select or unselect.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Cancel
Defines the cancel selected file or folder.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Event
Defines the Mouse Event
Declaration
public MouseEventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs |
FileDetails
Return the currently selected item as JSON object.
Declaration
public TValue FileDetails { get; set; }
Property Value
Type | Description |
---|---|
TValue |
IsInteracted
Defines whether event is triggered by interaction or not.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Target
Specifies the actual target.
Declaration
public DOM Target { get; set; }
Property Value
Type | Description |
---|---|
DOM |