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
AutoCapitalize
Defines the inputmode HTML attribute of the component. Support and behavior depends on the browser.
Declaration
public string AutoCapitalize { get; set; }
Property Value
System.String
|
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
Defines the name HMTL attribute of the TextBox.
Declaration
public string Name { get; set; }
Property Value
System.String
|
Placeholder
Defines the placeholder HTML attribute of the component.
Declaration
public string Placeholder { get; set; }
Property Value
System.String
|
ReadOnly
The parameter is used to specify if the input field should be read-only.
When set to true
, the input becomes non-editable.
Declaration
public bool ReadOnly { get; set; }
Property Value
System.Boolean
|
Rounded
Declaration
public abstract string Rounded { get; set; }
Property Value
System.String
|
Size
Declaration
public abstract string Size { get; set; }
Property Value
System.String
|
SpellCheck
Defines the spellcheck HTML attribute of the component. Support and behavior depends on the user environment.
Declaration
public string SpellCheck { get; set; }
Property Value
System.String
|
Title
Defines the title HTML attribute of the component.
Declaration
public string Title { get; set; }
Property Value
System.String
|
Width
Defines the width of the Component as a CSS value.
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
|
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|
Overrides
OnParametersSetInternalAsync()
Declaration
protected virtual Task OnParametersSetInternalAsync()
Returns
System.Threading.Tasks.Task
|