Class SpinnerEvents
Configure event handlers for the Spinner component.
Inheritance
System.Object
SpinnerEvents
Namespace: Syncfusion.Blazor.Spinner
Assembly: Syncfusion.Blazor.dll
Syntax
public class SpinnerEvents : OwningComponentBase
Constructors
SpinnerEvents()
Declaration
public SpinnerEvents()
Properties
Created
Event triggers after the Spinner is created.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> | An event callback function. |
Destroyed
Event triggers after the Spinner is destroyed.
Declaration
public EventCallback<object> Destroyed { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> | An event callback function. |
OnBeforeClose
Event triggers before the Spinner is closed.
Declaration
public EventCallback<SpinnerEventArgs> OnBeforeClose { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<SpinnerEventArgs> | An event callback function. |
OnBeforeOpen
Event triggers before the Spinner is opened.
Declaration
public EventCallback<SpinnerEventArgs> OnBeforeOpen { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<SpinnerEventArgs> | An event callback function. |
Methods
Dispose()
Dispose the unmanaged resources.
Declaration
public virtual void Dispose()
Dispose(Boolean)
Dispose the unmanaged resources.
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing | Boolean value to dispose the object. |
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. |