The different input style of keyboard input.
Used By: TextInputSystem.KeyboardOptions#keyboardType
var options = new TextInputSystem.KeyboardOptions();options.keyboardType = TextInputSystem.KeyboardType.Text;script.createEvent("TapEvent").bind(function(){ global.textInputSystem.requestKeyboard(options);}) Copy
var options = new TextInputSystem.KeyboardOptions();options.keyboardType = TextInputSystem.KeyboardType.Text;script.createEvent("TapEvent").bind(function(){ global.textInputSystem.requestKeyboard(options);})
A keyboard type for entering digits
Wearable Only
A keyboard type for entering passwords.
A keyboard type for entering phone numbers
A keyboard type for entering normal text
A keyboard type for entering URLs
The different input style of keyboard input.
See
Used By: TextInputSystem.KeyboardOptions#keyboardType
Example