The body of the component. In markup, this is everything in the body of the tag.
Aura.Component[]
class
A CSS style to be attached to the component. This style is added in addition to base styles output by the component.
String
cols
The width of the text area, which is defined by the number of characters to display in a single row at a time. Default value is “20”.
Integer
20
disabled
Specifies whether the component should be displayed in a disabled state. Default value is "false".
Boolean
false
errors
The list of errors to be displayed.
Object[]
height
The height of the editing area (that includes the editor content). This can be an integer, for pixel sizes, or any CSS-defined length unit.
String
200
label
The text of the label component
String
labelClass
The CSS class of the label component
String
maxlength
The maximum number of characters that can be typed into the input field. Corresponds to the maxlength attribute of the rendered HTML textarea element.
Integer
placeholder
The text that is displayed by default.
String
readonly
Specifies whether the text area should be rendered as read-only. Default value is “false”.
Boolean
false
required
Specifies whether the input is required. Default value is "false".
Boolean
false
requiredIndicatorClass
The CSS class of the required indicator component
String
resizable
Specifies whether or not the textarea should be resizable. Defaults to true.
Boolean
true
rows
The height of the text area, which is defined by the number of rows to display at a time. Default value is “2”.
Integer
2
updateOn
Updates the component's value binding if the updateOn attribute is set to the handled event. Default value is "change".
String
change
value
The value currently in the input field.
String
width
The editor UI outer width. This can be an integer, for pixel sizes, or any CSS-defined unit. If isRichText is set to false, use the cols attribute instead.