Table of Contents

Interface ISelectionOption

Namespace
BlazOrbit.Abstractions
Assembly
BlazOrbit.Core.dll

An option presented by a selection-capable component (dropdown, autocomplete, etc.).

public interface ISelectionOption

Properties

Content

Optional render fragment used in place of DisplayText.

RenderFragment? Content { get; }

Property Value

RenderFragment

DisplayText

Text shown in the list and in the selected-value chip.

string DisplayText { get; }

Property Value

string

IsDisabled

True when the option cannot be selected.

bool IsDisabled { get; }

Property Value

bool

Value

Backing value carried into the bound model.

object? Value { get; }

Property Value

object