Text Area
BptTextArea
The BptTextArea component provides a multiline text input with two render modes (native textarea or contenteditable div), auto-scaling, and character limit support.
Text Area Parameters
Value:
Current Configuration
📋
The BptTextArea component provides a multiline text input with two render modes (native textarea or contenteditable div), auto-scaling, and character limit support.
Value:
<BptTextArea @bind-Value="textValue"
OnTextChanged="HandleTextChanged"
OnFocusIn="HandleFocusIn"
OnFocusOut="HandleFocusOut" />
@code {
private string textValue = "";
private void HandleTextChanged(string text)
{
// Handle text change
}
private void HandleFocusIn()
{
// Handle focus in
}
private void HandleFocusOut()
{
// Handle focus out
}
}