Table of Contents

Class BOBStep

Namespace
BlazOrbit.Components
Assembly
BlazOrbit.dll
[GenerateComponentInfo]
public class BOBStep : ComponentBase
Inheritance
object
ComponentBase
BOBStep

Constructors

BOBStep()

public BOBStep()

Properties

ChildContent

Body rendered when this step is the active one.

[Parameter]
public RenderFragment? ChildContent { get; set; }

Property Value

RenderFragment

Description

Optional secondary line below the title.

[Parameter]
public string? Description { get; set; }

Property Value

string

Disabled

When true, header click is suppressed even if the parent allows skip.

[Parameter]
public bool Disabled { get; set; }

Property Value

bool

Error

When true, the step is rendered with the error state regardless of its position.

[Parameter]
public bool Error { get; set; }

Property Value

bool

Icon

Optional icon rendered inside the marker (overrides the index numeral).

[Parameter]
public IconKey? Icon { get; set; }

Property Value

IconKey?

Parent

Parent BOBStepper container that owns this step. Cascaded automatically.

[CascadingParameter]
public BOBStepper? Parent { get; set; }

Property Value

BOBStepper

Title

Visible label rendered next to the marker.

[Parameter]
[EditorRequired]
public string? Title { get; set; }

Property Value

string

Methods

BuildRenderTree(RenderTreeBuilder)

Renders the component to the supplied Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.

protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder RenderTreeBuilder

Dispose()

public void Dispose()

OnInitialized()

Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree.

protected override void OnInitialized()