Class ExpandEventArgs
A class that holds options to control the expanding item action.
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExpandEventArgs : Object
Constructors
ExpandEventArgs()
Declaration
public ExpandEventArgs()
Properties
Cancel
Specifies a value that indicates to prevent the current action.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Index
Returns the Accordion Item Index.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
IsExpanded
Returns the expand or collapse state.
Declaration
public bool IsExpanded { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Item
Returns the current Accordion Item Object.
Declaration
public AccordionItemModel Item { get; set; }
Property Value
Type | Description |
---|---|
AccordionItemModel |
Name
Returns the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |