Files
Basalt/docs/objects/Input.md
Samuel Pizette cb98307e44 bad syntax fix
2022-06-09 11:08:26 -04:00

482 B

With input's you are able to create a object where the user can type something in.

Here are all possible functions available for inputs:
Remember Input inherits from Object

setInputType

changes the input type

local mainFrame = basalt.createFrame("myFirstFrame"):show()
local aInput = mainFrame:addInput("myFirstInput"):setInputType("password"):show()

parameters: string value ("text", "password", "number")
returns: self