Table of Contents

Struct NoResultsContext

Namespace
BlazOrbit.Components.Forms.Dropdown
Assembly
BlazOrbit.dll

Provides context information when no results are found in a dropdown search.

public readonly struct NoResultsContext

Constructors

NoResultsContext(string, int)

Provides context information when no results are found in a dropdown search.

public NoResultsContext(string SearchText, int TotalOptionsCount)

Parameters

SearchText string

The current search text entered by the user.

TotalOptionsCount int

The total number of available options.

Properties

SearchText

The current search text entered by the user.

public string SearchText { get; init; }

Property Value

string

TotalOptionsCount

The total number of available options.

public int TotalOptionsCount { get; init; }

Property Value

int