mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:22:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			258 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			25 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
 | |
| }
 | |
| ```
 | 
