Blazor

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class TabEvents

    Show / Hide Table of Contents

    Class TabEvents

    Configure event handlers to handle the events with the Tabs component.

    Inheritance
    System.Object
    TabEvents
    Namespace: Syncfusion.Blazor.Navigations
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class TabEvents : ComponentBase

    Constructors

    TabEvents()

    Declaration
    public TabEvents()

    Properties

    Added

    The event triggers after adding the item to the Tabs.

    Declaration
    public EventCallback<AddEventArgs> Added { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<AddEventArgs>

    Adding

    The event triggers before adding the tab item to the Tabs.

    Declaration
    public EventCallback<AddEventArgs> Adding { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<AddEventArgs>

    Created

    The event triggers once the component 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 component gets destroyed.

    Declaration
    public EventCallback<object> Destroyed { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<System.Object>

    Dragged

    The event triggers after the tab item gets dropped.

    Declaration
    public EventCallback<DragEventArgs> Dragged { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<DragEventArgs>

    OnDragStart

    The event triggers when the Tab item drag starts.

    Declaration
    public EventCallback<DragEventArgs> OnDragStart { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<DragEventArgs>

    Removed

    The event triggers after removing the item from the Tabs.

    Declaration
    public EventCallback<RemoveEventArgs> Removed { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<RemoveEventArgs>

    Removing

    The event triggers before removing the item from the Tabs.

    Declaration
    public EventCallback<RemoveEventArgs> Removing { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<RemoveEventArgs>

    Selected

    The event triggers after the tab item gets selected.

    Declaration
    public EventCallback<SelectEventArgs> Selected { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<SelectEventArgs>

    Selecting

    The event triggers before the tab item gets selected.

    Declaration
    public EventCallback<SelectingEventArgs> Selecting { get; set; }
    Property Value
    Type Description
    Microsoft.AspNetCore.Components.EventCallback<SelectingEventArgs>

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved