Class TelerikTextBox
The Telerik TextBox class.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikTextBox : TextBoxBase, IDisposable, ILabelableInput
Constructors
TelerikTextBox()
Declaration
public TelerikTextBox()
Properties
AutoComplete
Defines the autocomplete HTML attribute of the component.
Declaration
public string AutoComplete { get; set; }
Property Value
System.String
|
FillMode
Specifies the fill mode of the TextBox. Default value is Solid.
Declaration
public override string FillMode { get; set; }
Property Value
System.String
|
Overrides
InputMode
Defines the inputmode HTML attribute of the TextBox.
Declaration
public string InputMode { get; set; }
Property Value
System.String
|
MaxLength
Defines the maxLength HTML attribute of the component.
Declaration
public Nullable<int> MaxLength { get; set; }
Property Value
System.Nullable<System.Int32>
|
Password
Defines if the characters in the TextBox should be masked out.
Declaration
public bool Password { get; set; }
Property Value
System.Boolean
|
Rounded
Specifies the roundness of the TextBox. Default value is Medium.
Declaration
public override string Rounded { get; set; }
Property Value
System.String
|
Overrides
ShowClearButton
Specifies whether the clear button should be displayed.
Declaration
public bool ShowClearButton { get; set; }
Property Value
System.Boolean
|
ShowPrefixSeparator
Defines whether the prefix separator should be shown. The default value is true.
Declaration
public bool ShowPrefixSeparator { get; set; }
Property Value
System.Boolean
|
ShowSuffixSeparator
Defines whether the suffix separator should be shown. The default value is true.
Declaration
public bool ShowSuffixSeparator { get; set; }
Property Value
System.Boolean
|
Size
Specifies the Size of the text TextBox. Default value is Medium.
Declaration
public override string Size { get; set; }
Property Value
System.String
|
Overrides
TextBoxPrefixTemplate
The content of the TextBox prefix.
Declaration
public RenderFragment TextBoxPrefixTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
TextBoxSuffixTemplate
The content of the TextBox suffix.
Declaration
public RenderFragment TextBoxSuffixTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
OnInput(ChangeEventArgs)
Declaration
public void OnInput(ChangeEventArgs args)
Parameters
Microsoft.AspNetCore.Components.ChangeEventArgs
args
|