Class FileSelectionEventArgs<TValue>
Represents the 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 | Specifies the TValue of the FileManager. |
Constructors
FileSelectionEventArgs()
Declaration
public FileSelectionEventArgs()
Properties
Action
Gets the name of action like select or unselect.
Declaration
public string Action { get; set; }
Property Value
Type |
---|
System.String |
Cancel
'true' if the selection must be cancelled; Otherwise 'false'
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
Event
Gets the Mouse Event
Declaration
public MouseEventArgs Event { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs |
FileDetails
Gets the currently selected item as JSON object.
Declaration
public TValue FileDetails { get; set; }
Property Value
Type |
---|
TValue |
IsInteracted
Gets or sets whether event is triggered by interaction or not.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type |
---|
System.Boolean |