Class MenuClickEventArgs<TValue>
Class for MenuClick event arguments.
Inheritance
System.Object
MenuClickEventArgs<TValue>
Namespace: Syncfusion.Blazor.FileManager
Assembly: Syncfusion.Blazor.dll
Syntax
public class MenuClickEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | TValue. |
Constructors
MenuClickEventArgs()
Declaration
public MenuClickEventArgs()
Properties
Cancel
If you want to cancel this event then, set cancel to true. Otherwise, false.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
FileDetails
Return the currently selected folder/file items as an array of JSON object.
Declaration
public List<TValue> FileDetails { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TValue> |
Item
Return the currently clicked context menu item as JSON object.
Declaration
public MenuItem Item { get; set; }
Property Value
Type | Description |
---|---|
MenuItem |