TextAreaInput
This documentation provides a comprehensive reference for the TextAreaInput component, including its multiline text entry options and Bulma styling parameters.
Preview #
Parameters #
| Name | Type | Default | Required | Description | Added Version |
|---|---|---|---|---|---|
| AdditionalAttributes | Dictionary<string, object> | null | Gets or sets additional attributes that will be applied to the component. | 1.0.0 | |
| BindEvent | BindEvent | OnChange | Gets or sets the input bind event. | 1.2.0 | |
| Class | string? | null | Gets or sets the CSS class name(s) to apply to the component. | 1.0.0 | |
| Color | TextAreaInputColor | None | Gets or sets the color. | 1.2.0 | |
| Disabled | bool | False | Gets or sets the disabled state. | 1.2.0 | |
| Id | string? | null | Gets or sets the ID. If not set, a unique ID will be generated. | 1.0.0 | |
| IsFixedSize | bool | False | Gets or sets a value indicating whether textarea resizing is disabled. | 1.2.0 | |
| MaxLength | int? | null | Gets or sets the maximum number of characters that can be entered. | 1.2.0 | |
| Placeholder | string | null | Gets or sets the placeholder text. | 1.2.0 | |
| ReadOnly | bool | False | Gets or sets a value indicating whether the textarea is read-only. | 1.2.0 | |
| Rows | int? | null | Gets or sets the number of visible text lines. | 1.2.0 | |
| Size | TextAreaInputSize | None | Gets or sets the size. | 1.2.0 | |
| State | TextAreaInputState | None | Gets or sets the state. | 1.2.0 | |
| Style | string? | null | Gets or sets the CSS style string that defines the inline styles for the component. | 1.0.0 | |
| Value | string | null | Gets or sets the value. | 1.2.0 | |
| ValueExpression | Expression<Func<string>>? | null | Gets or sets the expression. | 1.2.0 |
Methods #
| Name | Return type | Description | Added Version |
|---|---|---|---|
| Disable() | Void | Disables the TextAreaInput. |
1.2.0 |
| Enable() | Void | Enables the TextAreaInput. |
1.2.0 |
Events #
| Name | Return Type | Description | Added Version |
|---|---|---|---|
| ValueChanged | EventCallback<string> | This event fires when the TextAreaInput value changes. |
1.2.0 |