Library Blazor Components SpinTextBox Value

Value

Value of the input.

razor
[Parameter]
public double? Value { get; set; }

Example

This property supports two-way binding.

razor
<SpinTextBox @bind-Value="_quantity" Min="0" Max="50" />

@code {
    private double? _quantity;
}

Sign in