Class _BOBInDate
- Namespace
- BlazOrbit.Components
- Assembly
- BlazOrbit.dll
public class _BOBInDate : ComponentBase
- Inheritance
-
objectComponentBase_BOBInDate
Constructors
_BOBInDate()
public _BOBInDate()
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 (YYYY-MM-DD).
[Parameter]
public string? Max { get; set; }
Property Value
- string
Min
Minimum allowed value (YYYY-MM-DD).
[Parameter]
public string? Min { get; set; }
Property Value
- string
OnInput
Raised on every keystroke when UpdateOnInput is enabled.
[Parameter]
public EventCallback<string?> OnInput { get; set; }
Property Value
- EventCallback<string>
Placeholder
Placeholder text shown when the component is empty.
[Parameter]
public string? Placeholder { get; set; }
Property Value
- string
UpdateOnInput
UpdateOnInput.
[Parameter]
public bool UpdateOnInput { get; set; }
Property Value
- bool
Value
Current value of the component (ISO YYYY-MM-DD; the format <input type="date"> emits and accepts).
[Parameter]
public string? Value { get; set; }
Property Value
- string
ValueChanged
Raised when the value changes.
[Parameter]
public EventCallback<string?> ValueChanged { get; set; }
Property Value
- EventCallback<string>
Methods
BuildRenderTree(RenderTreeBuilder)
Renders the component to the supplied Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builderRenderTreeBuilder