Class
TelerikStepper

The class for the Telerik Stepper component.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TelerikStepper : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentTelerikStepper

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members BaseComponent.ShouldRender()BaseComponent.OnInitializedAsync()BaseComponent.Dispose()BaseComponent.InitLocalizer()BaseComponent.ThrowIfParameterIsNull(object, string)BaseComponent.HaveOptionsChanged(IDictionary<string, object>, IDictionary<string, object>)BaseComponent.GetClassString(params string[])BaseComponent.InvokeAsync<T>(string, params object[])BaseComponent.InvokeAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidAsync(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidComponentMethodAsync(string, params object[])BaseComponent.InvokeComponentVoidMethodAsync(string, object)BaseComponent.InvokeDisposeAsync()BaseComponent.StateHasChanged()BaseComponent.RootComponentBaseComponent.ClassComponentBase.OnInitialized()ComponentBase.OnParametersSet()ComponentBase.OnParametersSetAsync()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)ComponentBase.SetParametersAsync(ParameterView)

Constructors

TelerikStepper()

Declaration

cs-api-definition
public TelerikStepper()

Properties

Linear

Specifies if the Stepper forbids skipping steps. The default value is false.

Declaration

cs-api-definition
[Parameter]
public bool Linear { get; set; }

Property Value

bool

Orientation

Defines if the Component shows steps horizontally or vertically. The default value is Horizontal. Supports Vertical and Horizontal orientation.

Declaration

cs-api-definition
[Parameter]
public StepperOrientation Orientation { get; set; }

Property Value

StepperOrientation

StepType

Defines if the Stepper shows icons and numbers, or just labels. The default value is Steps. Supports Labels and Steps step types.

Declaration

cs-api-definition
[Parameter]
public StepperStepType StepType { get; set; }

Property Value

StepperStepType

StepperSteps

Defines the container tag for the Stepper steps. Add StepperStep tags inside this tag.

Declaration

cs-api-definition
[Parameter]
public RenderFragment StepperSteps { get; set; }

Property Value

RenderFragment

Value

Defines the zero-based index of the current step.

Declaration

cs-api-definition
[Parameter]
public int Value { get; set; }

Property Value

int

ValueChanged

Triggers when the value has changed.

Declaration

cs-api-definition
[Parameter]
public EventCallback<int> ValueChanged { get; set; }

Property Value

EventCallback<int>

Methods

BuildRenderTree(RenderTreeBuilder)

Declaration

cs-api-definition
protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder

RenderTreeBuilder

Overrides ComponentBase.BuildRenderTree(RenderTreeBuilder)

OnAfterRenderAsync(bool)

Declaration

cs-api-definition
protected override Task OnAfterRenderAsync(bool firstRender)

Parameters

firstRender

bool

Returns

Task

Overrides BaseComponent.OnAfterRenderAsync(bool)