Class TextBoxBase
The base class for textbox components.
Inherited Members
Namespace: Telerik.Blazor.Components.Common
Assembly: Telerik.Blazor.dll
Syntax
public abstract class TextBoxBase : TelerikInputBase<string>, IDisposable, ILabelableInput
Constructors
TextBoxBase()
Declaration
protected TextBoxBase()
Properties
DebounceDelay
Time in ms between last typed symbol and the updating of the value. Default is 150ms.
Declaration
public int DebounceDelay { get; set; }
Property Value
System.Int32
|
FillMode
Declaration
public abstract string FillMode { get; set; }
Property Value
System.String
|
Name
Specifies the name attribute of the TextBox.
Declaration
public string Name { get; set; }
Property Value
System.String
|
Placeholder
Specifies the placeholder attribute of the component.
Declaration
public string Placeholder { get; set; }
Property Value
System.String
|
Rounded
Declaration
public abstract string Rounded { get; set; }
Property Value
System.String
|
Size
Declaration
public abstract string Size { get; set; }
Property Value
System.String
|
Title
Specifies the title attribute of the component.
Declaration
public string Title { get; set; }
Property Value
System.String
|
Width
Specifies the width of the component.
Declaration
public string Width { get; set; }
Property Value
System.String
|
Methods
Dispose()
Declaration
public override void Dispose()
Overrides
InitJsComponentAsync()
Declaration
protected Task InitJsComponentAsync()
Returns
System.Threading.Tasks.Task
|
OnAfterRenderAsync(Boolean)
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
System.Boolean
firstRender
|
Returns
System.Threading.Tasks.Task
|
Overrides
OnAfterRenderInternalAsync(Boolean)
Declaration
protected virtual Task OnAfterRenderInternalAsync(bool firstRender)
Parameters
System.Boolean
firstRender
|
Returns
System.Threading.Tasks.Task
|
OnInitialized()
Declaration
protected override void OnInitialized()
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|
Overrides
OnParametersSetInternalAsync()
Declaration
protected virtual Task OnParametersSetInternalAsync()
Returns
System.Threading.Tasks.Task
|