ClassTelerikStepper
The class for the Telerik Stepper component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class TelerikStepper : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikStepper
Implements:
Inherited Members
Constructors
TelerikStepper()
Declaration
public TelerikStepper()
Properties
Linear
Specifies if the Stepper forbids skipping steps. The default value is false
.
Orientation
Defines if the Component shows steps horizontally or vertically. The default value is Horizontal. Supports Vertical and Horizontal orientation.
Declaration
[Parameter]
public StepperOrientation Orientation { get; set; }
Property Value
StepType
Defines if the Stepper shows icons and numbers, or just labels. The default value is Steps. Supports Labels and Steps step types.
Declaration
[Parameter]
public StepperStepType StepType { get; set; }
Property Value
StepperSteps
Defines the container tag for the Stepper steps. Add StepperStep tags inside this tag.
Declaration
[Parameter]
public RenderFragment StepperSteps { get; set; }
Property Value
Value
Defines the zero-based index of the current step.
ValueChanged
Triggers when the value has changed.
Declaration
[Parameter]
public EventCallback<int> ValueChanged { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides