### InputTextarea Usage Examples Source: https://primeng-v15.pages.dev/inputtextarea Examples demonstrating how to use the InputTextarea component in various scenarios, including basic usage, reactive forms, auto-resize, and float labels. ```APIDOC ## InputTextarea InputTextarea adds styling and autoResize functionality to standard textarea element. ### Import ``` import { InputTextareaModule } from 'primeng/inputtextarea'; ``` ### Basic InputTextarea is applied to an input field with `pInputTextarea` directive. ```html ``` ### Reactive Forms InputTextarea can also be used with reactive forms. In this case, the `formControlName` property is used to bind the component to a form control. ```html
``` ### AutoResize When `autoResize` is enabled, textarea grows instead of displaying a scrollbar. ```html ``` ### Key Filter InputText has built-in key filtering support to block certain keys, refer to keyfilter page for more information. ```html ``` ### Float Label A floating label appears on top of the input field when focused. ```html ``` ### Disabled When `disabled` is present, the element cannot be edited and focused. ```html ``` ### Style Name| Element ---|--- p-inputtextarea| Textarea element ### Accessibility Screen Reader InputTextarea component renders a native textarea element that implicitly includes any passed prop. Value to describe the component can either be provided via `label` tag combined with `id` prop or using `aria-labelledby` , `aria-label` props. ```html ```