Class TelerikTextArea
The Telerik TextArea component.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikTextArea : TextBoxBase, IDisposable, ILabelableInput
Constructors
TelerikTextArea()
Declaration
public TelerikTextArea()
Properties
AdornmentsFlow
Specifies the positioning of the elements (adornments) in the prefix and suffix templates of the TelerikTextArea component. The possible values are: Horizontal (default) - the elements within the prefix and suffix templates will be ordered in a row. Vertical - the elements within the prefix and suffix templates will be ordered in a column.
Declaration
public TextAreaAdornmentsFlow AdornmentsFlow { get; set; }
Property Value
TextAreaAdornmentsFlow
|
AdornmentsOrientation
Specifies the flow of the prefix and suffix templates of the TelerikTextArea component. The possible values are: Horizontal (default) - the prefix and suffix templates will be arranged in a row, with the text area positioned between them. Vertical - the prefix and suffix templates will be arranged in a column, with the text area positioned between them.
Declaration
public TextAreaAdornmentsOrientation AdornmentsOrientation { get; set; }
Property Value
TextAreaAdornmentsOrientation
|
AutoComplete
Defines the autocomplete HTML attribute of the component.
Declaration
public string AutoComplete { get; set; }
Property Value
System.String
|
Cols
Sets the cols attribute of the textarea.
Declaration
public Nullable<int> Cols { get; set; }
Property Value
System.Nullable<System.Int32>
|
FillMode
Specifies the fill mode of the TextArea. Default value is Solid.
Declaration
public override string FillMode { get; set; }
Property Value
System.String
|
Overrides
MaxLength
Sets the maxlength attribute of the textarea.
Declaration
public Nullable<int> MaxLength { get; set; }
Property Value
System.Nullable<System.Int32>
|
ResizeMode
Specifies the TextArea's resize behavior. Default behavior is the one set by the browser.
Declaration
public Nullable<TextAreaResizeMode> ResizeMode { get; set; }
Property Value
System.Nullable<TextAreaResizeMode>
|
Rounded
Specifies the roundness of the TextArea. Default value is Medium.
Declaration
public override string Rounded { get; set; }
Property Value
System.String
|
Overrides
Rows
Sets the rows attribute of the textarea.
Declaration
public Nullable<int> Rows { get; set; }
Property Value
System.Nullable<System.Int32>
|
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 TextArea. Default value is Medium.
Declaration
public override string Size { get; set; }
Property Value
System.String
|
Overrides
TextAreaPrefixTemplate
The content of the TextArea prefix.
Declaration
public RenderFragment TextAreaPrefixTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
TextAreaSuffixTemplate
The content of the TextArea suffix.
Declaration
public RenderFragment TextAreaSuffixTemplate { 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
|
OnAfterRenderAsync(Boolean)
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
System.Boolean
firstRender
|
Returns
System.Threading.Tasks.Task
|
Overrides
OnParametersSet()
Declaration
protected override void OnParametersSet()
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
Microsoft.AspNetCore.Components.ParameterView
parameters
|
Returns
System.Threading.Tasks.Task
|