C
EnterKeyAction QML Type
Provides attached properties for customizing the enter key. More...
Import Statement: | import QtQuick.VirtualKeyboard |
Attached Properties
- actionId : int
Detailed Description
The EnterKeyAction type provides attached properties which allows customizing the enter key button of the keyboard.
The EnterKeyAction must be used directly inside the item receiving input focus, such as TextInput.
For example:
TextInput { id: textInput1 EnterKeyAction.actionId: EnterKeyAction.Next Keys.onPressed: { onAccepted: { // transfer focus to second TextInput when Enter pressed textInput2.forceActiveFocus() } ... } }
Attached Property Documentation
EnterKeyAction.actionId : int |
Sets the action id for the enter key in virtual keyboard. When the action id is set, it affects the icon for the enter key.
Constant | Description |
---|---|
EnterKeyAction.None | No action defined. |
EnterKeyAction.Go | Action performs go operation. For example, load the entered URL. |
EnterKeyAction.Search | Action performs search operation. |
EnterKeyAction.Send | Action sends the entered text. |
EnterKeyAction.Next | Action moves the input focus to the next field accepting text input. |
EnterKeyAction.Done | Same as EnterKeyAction.Next , except all the text input is done. |
Available under certain Qt licenses.
Find out more.