Class AccordionClickArgs
Provides the information about the accordion click action.
Inheritance
System.Object
AccordionClickArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class AccordionClickArgs : Object
Constructors
AccordionClickArgs()
Declaration
public AccordionClickArgs()
Properties
Item
Gets the accordion item that is being clicked.
Declaration
public AccordionItemModel Item { get; }
Property Value
Type | Description |
---|---|
AccordionItemModel | An AccordionItemModel object that represents the clicked accordion item. |
Name
Gets the name of the event.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
OriginalEvent
Gets the mouse event informations.
Declaration
public MouseEventArgs OriginalEvent { get; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs | The MouseEventArgs object that contains the mouse event data. |