mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 03:57:15 +02:00
26 lines
258 B
Markdown
26 lines
258 B
Markdown
## Name
|
|
|
|
GML Text Box Widget
|
|
|
|
## Description
|
|
|
|
Defines a GUI text box widget.
|
|
|
|
## Synopsis
|
|
|
|
`@GUI::TextBox`
|
|
|
|
## Examples
|
|
|
|
```gml
|
|
@GUI::TextBox {
|
|
placeholder: "Text box"
|
|
mode: "Editable"
|
|
}
|
|
|
|
@GUI::TextBox {
|
|
text: "Disabled"
|
|
enabled: false
|
|
}
|
|
```
|