ClassTextBoxBase
The base class for textbox components.
Definition
Namespace:Telerik.Blazor.Components.Common
Assembly:Telerik.Blazor.dll
Syntax:
public abstract class TextBoxBase : TelerikInputBase<string>, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikInputBase<string>TextBoxBase
Derived Classes:
Implements:
Inherited Members
Constructors
TextBoxBase()
Declaration
protected TextBoxBase()
Properties
AutoCapitalize
Defines the inputmode HTML attribute of the component. Support and behavior depends on the browser.
Declaration
[Parameter]
public string AutoCapitalize { get; set; }
Property Value
DebounceDelay
Time in ms between last typed symbol and the updating of the value. Default is 150ms.
Placeholder
Defines the placeholder HTML attribute of the component.
Declaration
[Parameter]
public string Placeholder { get; set; }
Property Value
ReadOnly
The parameter is used to specify if the input field should be read-only.
When set to true
, the input becomes non-editable.
SpellCheck
Defines the spellcheck HTML attribute of the component. Support and behavior depends on the user environment.
Declaration
[Parameter]
public string SpellCheck { get; set; }
Property Value
Methods
Dispose()
Declaration
public override void Dispose()
Overrides