The master branch was reverted to 1.7 because it was very unstable (bugs and stuff that wasn't mentioned on the documentation page yet) - features will come back with 2.0 - fixed debug window - fixed flexbox not sending drag events to it's children - small docs updates for 1.7 - removed the examples because the are outdated
24 lines
428 B
Markdown
24 lines
428 B
Markdown
## clear
|
|
|
|
### Description
|
|
|
|
Clears the entire content of a Textfield object, removing all text currently displayed within it.
|
|
|
|
### Returns
|
|
|
|
1. `object ` The object in use
|
|
|
|
### Usage
|
|
|
|
```lua
|
|
local basalt = require("basalt")
|
|
|
|
local mainFrame = basalt.createFrame()
|
|
local aTextfield = mainFrame:addTextfield()
|
|
|
|
-- Assume there is some content in the Textfield
|
|
aTextfield:clear() -- Clear the entire content
|
|
|
|
basalt.autoUpdate()
|
|
```
|