Table of Contents

Interface IRadioOption

Namespace
BlazOrbit.Components.Forms
Assembly
BlazOrbit.dll

Contract for a single radio option child rendered inside an IRadioContainer.

public interface IRadioOption

Properties

Content

Content rendered inside the option (label and any custom markup).

RenderFragment? Content { get; }

Property Value

RenderFragment

IsDisabled

true when the option cannot be selected.

bool IsDisabled { get; }

Property Value

bool

RawValue

Underlying value carried by the option, boxed to object.

object? RawValue { get; }

Property Value

object