Table of Contents

Class BOBTimePicker

Namespace
BlazOrbit.Components.Forms
Assembly
BlazOrbit.dll
[GenerateComponentInfo]
public class BOBTimePicker : BOBComponentBase, IHasSize, IHasDensity, IPickerFamilyComponent
Inheritance
object
ComponentBase
BOBTimePicker
Implements
Inherited Members

Constructors

BOBTimePicker()

public BOBTimePicker()

Properties

Density

Vertical density (gap) of the component.

[Parameter]
public BOBDensity Density { get; set; }

Property Value

BOBDensity

Size

Visual size of the component.

[Parameter]
public BOBSize Size { get; set; }

Property Value

BOBSize

Value

Current value of the component.

[Parameter]
public TimeOnly? Value { get; set; }

Property Value

TimeOnly?

ValueChanged

Raised when the value changes.

[Parameter]
public EventCallback<TimeOnly?> ValueChanged { get; set; }

Property Value

EventCallback<TimeOnly?>

Methods

BuildRenderTree(RenderTreeBuilder)

Renders the component to the supplied Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder.

protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder RenderTreeBuilder

OnInitialized()

Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree.

protected override void OnInitialized()

OnParametersSet()

Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.

protected override void OnParametersSet()