Class ExpandedEventArgs
Provides the information about the accordion item expanded action.
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExpandedEventArgs : Object
Constructors
ExpandedEventArgs()
Declaration
public ExpandedEventArgs()
Properties
Index
Gets or sets the accordion item index.
Declaration
public int Index { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
IsExpanded
Gets the expanded or collapsed state of accordion item.
Declaration
public bool IsExpanded { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Item
Gets the accordion item that is being expanded or collapsed.
Declaration
public AccordionItemModel Item { get; }
Property Value
Type | Description |
---|---|
AccordionItemModel | An AccordionItemModel object that represents the accordion item being expanded or collapsed. |
Name
Gets the name of the event.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |