The return key style of keyboard input.
Used By: TextInputSystem.KeyboardOptions#returnKeyType
var options = new TextInputSystem.KeyboardOptions();options.returnKeyType = TextInputSystem.ReturnKeyType.Done;script.createEvent("TapEvent").bind(function(){ global.textInputSystem.requestKeyboard(options);}) Copy
var options = new TextInputSystem.KeyboardOptions();options.returnKeyType = TextInputSystem.ReturnKeyType.Done;script.createEvent("TapEvent").bind(function(){ global.textInputSystem.requestKeyboard(options);})
Return key label shows "Done"
Return key label shows "Go"
Return key label shows "Next"
Return key label shows "return"
Return key label shows "Search"
Return key label shows "Send"
The return key style of keyboard input.
See
Used By: TextInputSystem.KeyboardOptions#returnKeyType
Example