Class ExpandEventArgs
Provides the information about the accordion item expanding action.
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExpandEventArgs : Object
Constructors
ExpandEventArgs()
Declaration
public ExpandEventArgs()
Properties
Cancel
Gets or sets whether the prevent the expanding action.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
Index
Gets or sets the accordion item index.
Declaration
public int Index { get; set; }
Property Value
Type |
---|
System.Int32 |
IsExpanded
Gets the expand or collapse state of accordion item.
Declaration
public bool IsExpanded { get; set; }
Property Value
Type |
---|
System.Boolean |
Item
Gets the accordion item that is being expand or collapse.
Declaration
public AccordionItemModel Item { get; set; }
Property Value
Type |
---|
AccordionItemModel |
Name
Gets the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type |
---|
System.String |