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 whether the stepper has linear flow. Default value is false.
Declaration
public bool Linear { get; set; }
Property Value
System.Boolean
|
Orientation
Specifies the orientation of the component. Default value is Horizontal.
Declaration
public StepperOrientation Orientation { get; set; }
Property Value
StepperOrientation
|
StepperSteps
Specifies the stepper steps. Add StepperStep tags inside this tag.
Declaration
public RenderFragment StepperSteps { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
StepType
Specifies the step type of the component. Default value is Steps.
Declaration
public StepperStepType StepType { get; set; }
Property Value
StepperStepType
|
Value
Specifies the step 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
|