Tabs Class

Represents a set of tabbed pages. Each tab should be defined using a Tab component.
Each Tab contains its own content, and can be optionally disabled.

Definition

Namespace: BlazorBootstrap
Assembly: BlazorBootstrap (in BlazorBootstrap.dll) Version: 0.7+1dadc87dcf0a0f837e19a3ce2deb7c1cd85375d1
public sealed class Tabs : BlazorBootstrapComponentBase
Inheritance
Object    ComponentBase    BlazorBootstrapComponentBase    Tabs

Constructors

TabsInitializes a new instance of the Tabs class

Properties

ChildContent Gets or sets the content to be rendered within the component.

Methods

AddTab Adds a new tab to the component, invoked from the underlying Tab component.
RemoveTab Removes a tab from the component, invoked from the underlying Tab component.
SetParametersAsync Parameters are loaded manually for sake of performance; if we were to use System.Reflection magic, it would hurt performance if components were used in large numbers.
(Overrides ComponentBaseSetParametersAsync(ParameterView))
ShowLastTabAsync Selects the last tab
ShowTabByIndexAsync Selects the tab by index and show its associated pane.

See Also