Blazor TextArea - API
This example demonstrates the api functionalities of the TextArea control. You can customize the appearance and behaviour of textarea component by choosing the corresponding option from the property panel.
Properties
RowCount | |
ColumnCount | |
Disabled | |
ReadOnly | |
MaxLength | |
ShowClearButton |
The TextArea has the options to customize the appearance and behaviour of the component dynamically by updating the following properties:
- Change the number of rows and columns of textarea by updating RowCount and ColumnCount options.
- To make the textarea ReadOnly, check the ReadOnly option.
- Disable the textarea by check the Disabled option.
- Set the maximum length of characters that can be entered in textarea by customizing the MaxLength option.
- To make the clear button visible, check the ShowClearButton option.