mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-01-09 02:43:38 +08:00
30 lines
433 B
Markdown
30 lines
433 B
Markdown
|
# Class: checkbox
|
||
|
|
||
|
## Inherit from 1 class: base_text_element
|
||
|
|
||
|
Class representing a gui checkbox.
|
||
|
|
||
|
## Functions (2)
|
||
|
|
||
|
### `is_enabled()`
|
||
|
|
||
|
- **Returns:**
|
||
|
- `boolean`: Is the checkbox checked?
|
||
|
|
||
|
**Exemple Usage:**
|
||
|
```lua
|
||
|
boolean = checkbox:is_enabled()
|
||
|
```
|
||
|
|
||
|
### `set_enabled(enabled)`
|
||
|
|
||
|
- **Parameters:**
|
||
|
- `enabled` (boolean): The desired enabled state of the checkbox.
|
||
|
|
||
|
**Exemple Usage:**
|
||
|
```lua
|
||
|
checkbox:set_enabled(enabled)
|
||
|
```
|
||
|
|
||
|
|