Class OpenCloseMenuEventArgs<T>
Provides the information about the Opened/Closed event.
Inheritance
System.Object
OpenCloseMenuEventArgs<T>
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class OpenCloseMenuEventArgs<T> : Object
Type Parameters
Name |
---|
T |
Constructors
OpenCloseMenuEventArgs()
Declaration
public OpenCloseMenuEventArgs()
Properties
Element
Gets or sets a value that indicates the menu container element.
Declaration
public ElementReference Element { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.ElementReference |
Items
Gets or sets a value that indicates the current menu items.
Declaration
public List<T> Items { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |
Name
Gets or sets a value that indicates name of the event.
Declaration
public string Name { get; set; }
Property Value
Type |
---|
System.String |
NavigationIndex
Gets or sets a value that indicates the Navigation Index.
Declaration
public int NavigationIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
ParentItem
Gets or sets a value that indicates the parent item.
Declaration
public T ParentItem { get; set; }
Property Value
Type |
---|
T |
TargetId
Gets the ID of the element on which the user right click their mouse button (or finger, on touch devices) to open the context menu.
Declaration
public string TargetId { get; set; }
Property Value
Type |
---|
System.String |