TextArea QML Type▲
-
Import Statement: import QtQuick.Controls 2.4
-
Since: Qt 5.7
-
Inherits: TextEdit
-
Group: TextArea is part of qtquickcontrols2-input
Detailed Description▲
TextArea is a multi-line text editor. TextArea extends TextEdit with a placeholder text functionality, and adds decoration.

TextArea {
placeholderText
:
qsTr("Enter description"
)
}
TextArea is not scrollable by itself. Especially on screen-size constrained platforms, it is often preferable to make entire application pages scrollable. On such a scrollable page, a non-scrollable TextArea might behave better than nested scrollable controls. Notice, however, that in such a scenario, the background decoration of the TextArea scrolls together with the rest of the scrollable content.
Scrollable TextArea▲
If you want to make a TextArea scrollable, for example, when it covers an entire application page, it can be placed inside a ScrollView.

ScrollView
{
id
:
view
anchors.fill
:
parent
TextArea
{
text
:
"TextArea\n...\n...\n...\n...\n...\n...\n"
}
}
A TextArea that is placed inside a ScrollView does the following:
-
Sets the content size automatically
-
Ensures that the background decoration stays in place
-
Clips the content
See Also▲
See also TextField, Customizing TextArea, Input Controls
Property Documentation▲
background : Item▲
This property holds the background item.
If the background item has no explicit size specified, it automatically follows the control's size. In most cases, there is no need to specify width or height for a background item.
Most controls use the implicit size of the background item to calculate the implicit size of the control itself. If you replace the background item with a custom one, you should also consider providing a sensible implicit size for it (unless it is an item like Image which has its own implicit size).
See Also▲
See also Customizing TextArea
focusReason : enumeration▲
This property holds the reason of the last focus change.
This property does not indicate whether the control has active focus, but the reason why the control either gained or lost focus.
Constant |
Description |
---|---|
Qt.MouseFocusReason |
A mouse action occurred. |
Qt.TabFocusReason |
The Tab key was pressed. |
Qt.BacktabFocusReason |
A Backtab occurred. The input for this may include the Shift or Control keys; e.g. Shift+Tab. |
Qt.ActiveWindowFocusReason |
The window system made this window either active or inactive. |
Qt.PopupFocusReason |
The application opened/closed a pop-up that grabbed/released the keyboard focus. |
Qt.ShortcutFocusReason |
The user typed a label's buddy shortcut |
Qt.MenuBarFocusReason |
The menu bar took focus. |
Qt.OtherFocusReason |
Another reason, usually application-specific. |
See Also▲
See also Item::activeFocus
[since QtQuick.Controls 2.1 (Qt 5.8)] hoverEnabled : bool▲
This property determines whether the text area accepts hover events. The default value is true.
This property was introduced in QtQuick.Controls 2.1 (Qt 5.8).
See Also▲
See also hovered
[read-only, since QtQuick.Controls 2.1 (Qt 5.8)] hovered : bool▲
This property holds whether the text area is hovered.
This property was introduced in QtQuick.Controls 2.1 (Qt 5.8).
See Also▲
See also hoverEnabled
[since QtQuick.Controls 2.3 (Qt 5.10)] palette : palette▲
This property holds the palette currently set for the text area.
This property was introduced in QtQuick.Controls 2.3 (Qt 5.10).
See Also▲
See also Control::palette
placeholderText : string▲
This property holds the short hint that is displayed in the text area before the user enters a value.
Attached Property Documentation▲
TextArea.flickable : TextArea▲
This property attaches a text area to a Flickable.
See Also▲
See also ScrollBar, ScrollIndicator, Scrollable TextArea
Signal Documentation▲
pressAndHold(MouseEvent event)▲
This signal is emitted when there is a long press (the delay depends on the platform plugin). The event parameter provides information about the press, including the x and y position of the press, and which button is pressed.
The corresponding handler is onPressAndHold.
See Also▲
[since QtQuick.Controls 2.1 (Qt 5.8)] pressed(MouseEvent event)▲
This signal is emitted when the text area is pressed by the user. The event parameter provides information about the press, including the x and y position of the press, and which button is pressed.
The corresponding handler is onPressed.
This signal was introduced in QtQuick.Controls 2.1 (Qt 5.8).
See Also▲
See also released, pressAndHold
[since QtQuick.Controls 2.1 (Qt 5.8)] released(MouseEvent event)▲
This signal is emitted when the text area is released by the user. The event parameter provides information about the release, including the x and y position of the press, and which button is pressed.
The corresponding handler is onReleased.
This signal was introduced in QtQuick.Controls 2.1 (Qt 5.8).
See Also▲
See also pressed, pressAndHold