Table of Contents

Class BoxArea

Namespace
The.Web.Widgets
Assembly
Instagile.Web.Client.dll
public class BoxArea : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, INullableWidget<string?>, IWidget<string?>
Inheritance
BoxArea
Implements
Inherited Members

Properties

AllowNulls

If not set, null-state data will be coerced to a non-null value or input will be prevented; IsNull will never be true.

[Parameter]
public bool AllowNulls { get; set; }

Property Value

bool

AttachBottom

[Parameter]
public bool AttachBottom { get; set; }

Property Value

bool

AttachLeft

[Parameter]
public bool AttachLeft { get; set; }

Property Value

bool

AttachRight

[Parameter]
public bool AttachRight { get; set; }

Property Value

bool

AttachTop

[Parameter]
public bool AttachTop { get; set; }

Property Value

bool

FocusChanged

[Parameter]
public EventCallback<bool> FocusChanged { get; set; }

Property Value

EventCallback<bool>

HasChanges

If true, display a visual indication to the user.

[Parameter]
public bool HasChanges { get; set; }

Property Value

bool

IsReadOnly

[Parameter]
public bool IsReadOnly { get; set; }

Property Value

bool

MaxLength

[Parameter]
public int MaxLength { get; set; }

Property Value

int

Rows

[Parameter]
public int? Rows { get; set; }

Property Value

int?

Splat

[Parameter(CaptureUnmatchedValues = true)]
public Dictionary<string, object>? Splat { get; set; }

Property Value

Dictionary<string, object>

Validity

If set, display a visual indication to the user.

[Parameter]
public MessageLevel? Validity { get; set; }

Property Value

MessageLevel?

Value

Bindable typed value.

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

Property Value

string

ValueChanged

Triggered when data is entered by the user.

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

Property Value

EventCallback<string>

Methods

BuildRenderTree(RenderTreeBuilder)

Renders the component to the supplied RenderTreeBuilder.

protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder RenderTreeBuilder

OnFocusChanged(bool)

protected Task OnFocusChanged(bool focus)

Parameters

focus bool

Returns

Task

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()