Files
Basalt/docs/objects/Input.md
2022-06-09 11:43:59 -04:00

14 lines
484 B
Markdown

With input's you are able to create a object where the user can type something in.<br>
Here are all possible functions available for inputs:<br>
Remember Input inherits from [Object](objects/Object.md)
## setInputType
changes the input type
```lua
local mainFrame = basalt.createFrame("myFirstFrame"):show()
local aInput = mainFrame:addInput("myFirstInput"):setInputType("password"):show()
```
#### Parameters: string value ("text", "password", "number")<br>
#### Returns: self<br>