Class TelerikWizard
The class for the wizard component.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikWizard : BaseComponent, IDisposable, IWizardStepContainer, IWizardStepperSettingsContainer
Constructors
TelerikWizard()
Declaration
public TelerikWizard()
Properties
Height
Specifies the height of the wizard.
Declaration
public string Height { get; set; }
Property Value
System.String
|
OnFinish
Triggers when the done button is clicked.
Declaration
public EventCallback OnFinish { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback
|
ShouldRenderContent
Declaration
public bool ShouldRenderContent { get; set; }
Property Value
System.Boolean
|
ShowPager
Specifies the whether the page label should be visible. Default value is true.
Declaration
public bool ShowPager { get; set; }
Property Value
System.Boolean
|
StepperPosition
Specifies the stepper position in the wizard. Default value is Top.
Declaration
public WizardStepperPosition StepperPosition { get; set; }
Property Value
WizardStepperPosition
|
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>
|
Width
Specifies the width of the wizard.
Declaration
public string Width { get; set; }
Property Value
System.String
|
WizardButtons
Specifies the buttons section of the wizard.
Declaration
public RenderFragment<int> WizardButtons { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment<System.Int32>
|
WizardSettings
Specifies the wizard settings.
Declaration
public RenderFragment WizardSettings { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
WizardSteps
Specifies the wizard steps. Add WizardStep tags inside this tag.
Declaration
public RenderFragment WizardSteps { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|