Class AccordionEvents
Configure event handlers to handle the events with the Accordion component.
Inheritance
System.Object
AccordionEvents
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class AccordionEvents : ComponentBase
Constructors
AccordionEvents()
Declaration
public AccordionEvents()
Properties
Clicked
The event triggers when clicking anywhere within the Accordion.
Declaration
public EventCallback<AccordionClickArgs> Clicked { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<AccordionClickArgs> |
Collapsed
The event triggers after the item gets collapsed.
Declaration
public EventCallback<CollapsedEventArgs> Collapsed { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<CollapsedEventArgs> |
Collapsing
The event triggers before the item gets collapsed.
Declaration
public EventCallback<CollapseEventArgs> Collapsing { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<CollapseEventArgs> |
Created
The event triggers once the control rendering is completed.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
Destroyed
The event triggers when the control gets destroyed.
Declaration
public EventCallback<object> Destroyed { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
Expanded
The event triggers after the item gets expanded.
Declaration
public EventCallback<ExpandedEventArgs> Expanded { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ExpandedEventArgs> |
Expanding
The event triggers before the item gets expanded.
Declaration
public EventCallback<ExpandEventArgs> Expanding { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ExpandEventArgs> |
Methods
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |