Class _BOBInNumber
- Namespace
- BlazOrbit.Components
- Assembly
- BlazOrbit.dll
public class _BOBInNumber : ComponentBase
- Inheritance
-
objectComponentBase_BOBInNumber
Constructors
_BOBInNumber()
public _BOBInNumber()
Properties
AdditionalAttributes
[Parameter(CaptureUnmatchedValues = true)]
public Dictionary<string, object>? AdditionalAttributes { get; set; }
Property Value
- Dictionary<string, object>
AriaLabel
Accessible name for the component.
[Parameter]
public string? AriaLabel { get; set; }
Property Value
- string
Disabled
When true, the component is non-interactive.
[Parameter]
public bool Disabled { get; set; }
Property Value
- bool
Max
Maximum allowed value.
[Parameter]
public int? Max { get; set; }
Property Value
- int?
Min
Minimum allowed value.
[Parameter]
public int? Min { get; set; }
Property Value
- int?
OnInput
Raised on every keystroke when UpdateOnInput is enabled.
[Parameter]
public EventCallback<int?> OnInput { get; set; }
Property Value
- EventCallback<int?>
Placeholder
Placeholder text shown when the component is empty.
[Parameter]
public string? Placeholder { get; set; }
Property Value
- string
Step
Step interval for numeric inputs.
[Parameter]
public int? Step { get; set; }
Property Value
- int?
UpdateOnInput
UpdateOnInput.
[Parameter]
public bool UpdateOnInput { get; set; }
Property Value
- bool
Value
Current value of the component.
[Parameter]
public int? Value { get; set; }
Property Value
- int?
ValueChanged
Raised when the value changes.
[Parameter]
public EventCallback<int?> ValueChanged { get; set; }
Property Value
- EventCallback<int?>
Methods
BuildRenderTree(RenderTreeBuilder)
Renders the component to the supplied Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builderRenderTreeBuilder