Class FileMenuClosedEventArgs
Provides data for the FileMenuClosed event of the File menu.
Namespace: Syncfusion.Blazor.Ribbon
Assembly: Syncfusion.Blazor.dll
Syntax
public class FileMenuClosedEventArgs : Object
Remarks
This event is triggered when the file menu is closed, allowing post-close actions or cleanup.
Constructors
FileMenuClosedEventArgs()
Declaration
public FileMenuClosedEventArgs()
Properties
Items
Gets the list of menu items for the file menu.
Declaration
public List<MenuItem> Items { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<MenuItem> | A list of MenuItem representing the file menu items. The default is |
Remarks
This property contains the menu items that were present when the file menu was last displayed.
ParentItem
Gets the parent file menu item of the popup, in the case of a sub-menu.
Declaration
public MenuItem ParentItem { get; set; }
Property Value
Type | Description |
---|---|
MenuItem | A MenuItem representing the parent item of the submenu. The default is |
Remarks
Use this property to identify the context of a submenu within the file menu.