Version: v6On this pageion-textareascopedThe textarea component is used for multi-line text input. A native textarea element is rendered inside of the component. The user experience and interactivity of the textarea component is improved by having control over the native textarea.Unlike the native textarea element, the Ionic textarea does not support loading its value from the inner content. The textarea value should be set in the value attribute.The textarea component accepts the native textarea attributes in addition to the Ionic properties.Basic UsageAngularJavaScriptReactVueiOSMDAutogrowWhen the autoGrow property is set to true, the textarea will grow and shrink based on its contents.AngularJavaScriptReactVueiOSMDClear on EditSetting the clearOnEdit property to true will clear the textarea after it has been blurred and then typed in again.AngularJavaScriptReactVueiOSMDThemingAngularJavaScriptReactVueiOSMDInterfacesTextareaChangeEventDetailinterface TextareaChangeEventDetail { value?: string | null;}TextareaCustomEventWhile not required, this interface can be used in place of the CustomEvent interface for stronger typing with Ionic events emitted from this component.interface TextareaCustomEvent extends CustomEvent { detail: TextareaChangeEventDetail; target: HTMLIonTextareaElement;}PropertiesautoGrowDescriptionIf true, the textarea container will grow and shrink based on the contents of the textarea.Attributeauto-growTypebooleanDefaultfalseautocapitalizeDescriptionIndicates whether and how the text value should be automatically capitalized as it is entered/edited by the user. Available options: "off", "none", "on", "sentences", "words", "characters".AttributeautocapitalizeTypestringDefault'none'autofocusDescriptionこの Boolean 属性により、ページロード時にフォームコントロールにInputフォーカスが当たるように指定することができます。AttributeautofocusTypebooleanDefaultfalseclearOnEditDescriptiontrueの場合、編集時にフォーカスされた後、値がクリアされる。デフォルトは type が "password" のとき true で、それ以外のときは false です。Attributeclear-on-editTypebooleanDefaultfalsecolorDescriptionThe color to use from your application's color palette. Default options are: "primary", "secondary", "tertiary", "success", "warning", "danger", "light", "medium", and "dark". For more information on colors, see theming.AttributecolorType"danger" | "dark" | "light" | "medium" | "primary" | "secondary" | "success" | "tertiary" | "warning" | string & Record<never, never> | undefinedDefaultundefinedcolsDescriptionテキストコントロールの可視幅を、平均文字幅で指定します。指定する場合は、正の整数である必要があります。AttributecolsTypenumber | undefinedDefaultundefineddebounceDescriptionキーを押すたびに ionChange イベントが発生するまでの待ち時間をミリ秒単位で設定します。これは ngModel や v-model などのフォームバインディングにも影響します。AttributedebounceTypenumberDefault0disabledDescriptiontrueの場合、ユーザはテキストエリアと対話することができません。AttributedisabledTypebooleanDefaultfalseenterkeyhintDescriptionA hint to the browser for which enter key to display. Possible values: "enter", "done", "go", "next", "previous", "search", and "send".AttributeenterkeyhintType"done" | "enter" | "go" | "next" | "previous" | "search" | "send" | undefinedDefaultundefinedinputmodeDescriptionA hint to the browser for which keyboard to display. Possible values: "none", "text", "tel", "url", "email", "numeric", "decimal", and "search".AttributeinputmodeType"decimal" | "email" | "none" | "numeric" | "search" | "tel" | "text" | "url" | undefinedDefaultundefinedmaxlengthDescriptiontype属性の値が text, email, search, password, tel, または url の場合、この属性はユーザーが入力できる最大文字数を指定します。AttributemaxlengthTypenumber | undefinedDefaultundefinedminlengthDescriptiontype属性の値が text, email, search, password, tel, または url の場合、この属性はユーザーが入力できる最小文字数を指定します。AttributeminlengthTypenumber | undefinedDefaultundefinedmodeDescriptionmodeは、どのプラットフォームのスタイルを使用するかを決定します。AttributemodeType"ios" | "md"DefaultundefinednameDescriptionフォームデータとともに送信されるコントロールの名前。AttributenameTypestringDefaultthis.inputIdplaceholderDescription入力が値を持つ前に表示される指示文。AttributeplaceholderTypestring | undefinedDefaultundefinedreadonlyDescriptiontrueの場合、ユーザーは値を変更することができません。AttributereadonlyTypebooleanDefaultfalserequiredDescriptiontrueの場合、ユーザーはフォームを送信する前に値を入力する必要があります。AttributerequiredTypebooleanDefaultfalserowsDescriptionコントロールの可視テキスト行数。AttributerowsTypenumber | undefinedDefaultundefinedspellcheckDescriptiontrueの場合、その要素のスペルチェックと文法チェックが行われる。AttributespellcheckTypebooleanDefaultfalsevalueDescriptiontextareaの値です。AttributevalueTypenull | string | undefinedDefault''wrapDescriptionコントロールがテキストをどのように折り返すかを示します。AttributewrapType"hard" | "off" | "soft" | undefinedDefaultundefinedEventsNameDescriptionionBlurInputのフォーカスが外れたときに発行されます。ionChange入力値が変化したときに発行されます。ionFocusInputにフォーカスが当たったときに発行されます。ionInputキーボード入力が発生したときに発行されます。MethodsgetInputElementDescription要素の内部で使用されるネイティブの <textarea> 要素を返します。SignaturegetInputElement() => Promise<HTMLTextAreaElement>setFocusDescriptionSets focus on the native textarea in ion-textarea. Use this method instead of the global textarea.focus().SignaturesetFocus() => Promise<void>CSS Shadow PartsNo CSS shadow parts available for this component.CSS Custom PropertiesNameDescription--backgroundtextareaの背景--border-radiusテキストエリアの境界半径--color本文の色--padding-bottomテキストエリアのBottom Padding--padding-endテキストエリアの方向が左から右の場合はRight Padding、右から左の場合はLeft Paddingを使用します。--padding-starttextareaの方向が左から右の場合はLeft Padding、右から左の場合はRight Padding。--padding-toptextareaのTop Padding--placeholder-colorPlaceholderテキストの色--placeholder-font-stylePlaceholderテキストのスタイル--placeholder-font-weightPlaceholderテキストの重さ--placeholder-opacityPlaceholderテキストの不透明度SlotsNo slots available for this component.