Class TelerikStepper
The class for the Telerik Stepper component.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikStepper : BaseComponent, IDisposable, IStepContainer
Constructors
TelerikStepper()
Declaration
public TelerikStepper()
Properties
Linear
Specifies if the Stepper forbids skipping steps. The default value is false
.
Declaration
public bool Linear { get; set; }
Property Value
System.Boolean
|
Orientation
Defines if the Component shows steps horizontally or vertically. The default value is Horizontal. Supports Vertical and Horizontal orientation.
Declaration
public StepperOrientation Orientation { get; set; }
Property Value
StepperOrientation
|
StepperSteps
Defines the container tag for the Stepper steps. Add StepperStep tags inside this tag.
Declaration
public RenderFragment StepperSteps { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
StepType
Defines if the Stepper shows icons and numbers, or just labels. The default value is Steps. Supports Labels and Steps step types.
Declaration
public StepperStepType StepType { get; set; }
Property Value
StepperStepType
|
Value
Defines the zero-based index of the current step.
Declaration
public int Value { get; set; }
Property Value
System.Int32
|
ValueChanged
Triggers when the value has changed.
Declaration
public EventCallback<int> ValueChanged { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<System.Int32>
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
OnAfterRenderAsync(Boolean)
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
System.Boolean
firstRender
|
Returns
System.Threading.Tasks.Task
|