Newer
Older
minerva / Base / usr / share / man / man5 / GML / Widget / TextBox.md
@minerva minerva on 13 Jul 258 bytes Initial commit
## 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
}
```